web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Copy to Clipboard usin...
Power Apps
Unanswered

Copy to Clipboard using HTML text in Powerapps

(0) ShareShare
ReportReport
Posted on by 26

Is it possible to add a "Copy to Clipboard" using HTML text in PowerApps?

 

For displaying all my data from the gallery, I am using the HTML text label. I am able to change the font colors, font size, etc, added a Copy to Clipboard button inside the HTML text label, but I can't seem to figure out how to copy all text inside HTML text label.

 

<html>
<head>
<title>Copy Text to Clipboard</title>
<script>
function copyToClipboard() {
var textToCopy = 'Your text goes here';

var tempInput = document.createElement("input");
tempInput.setAttribute("value", textToCopy);
document.body.appendChild(tempInput);

tempInput.select();document.execCommand("copy");

document.body.removeChild(tempInput);

alert("Text copied to clipboard: " + textToCopy);
}
</script>
</head>
<body>


<!-- Create a button that triggers the copyToClipboard function when clicked -->
<button onclick="copyToClipboard()">Copy Text to Clipboard</button>
</body>
</html>

Categories:
I have the same question (0)
  • BCLS776 Profile Picture
    8,994 Moderator on at

    I don't believe the HTML text control supports the <script> tag, so consider using the Copy() function to achieve this.

     

    Hope that helps,

    Bryan

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 404

#2
timl Profile Picture

timl 344 Super User 2026 Season 1

#3
WarrenBelz Profile Picture

WarrenBelz 320 Most Valuable Professional

Last 30 days Overall leaderboard