Copy to Clipboard Action and ShortenURL for AppSheet
I’ve developed a solution for the highly requested “Copy to Clipboard” functionality in AppSheet, addressing the feature request many users have been asking for.
One Click. That’s it.
→ Tap the link
→ It copies the text to your clipboard
→ Browser auto-closes
→ Just paste it wherever you need
No apps. No installs. Just smooth magic.
The Solution I’ve created a web service that allows you to copy text to clipboard through a simple URL, which works seamlessly with AppSheet’s “Open URL” action.
How to Use
- Create a Custom Action in your AppSheet app
- Set the action type to “Open URL”
- Use this formula in the URL field:
CONCATENATE("https://copy-to-clipboard.onrender.com/copy/", ENCODEURL([Your_Text_Column]))
- Enable “Launch External” in the action settings
When users click the action:
- A new tab briefly opens
- The text is copied to their clipboard
- The tab automatically closes
- Once tab is closed click cmd + v or ctrl + v to paste from clipboard
Alternatively to test you can click this and try pasting from clipboard: https://copy-to-clipboard.onrender.com/copy/Extra!%20Extra!%20Clipboard%20functionality%20discovered%20outside%20AppSheet%20universe!
Technical Overview
The solution uses:
- A Node.js web service
This implementation provides a workaround until AppSheet implements native clipboard functionality. Feel free to try it out and share your feedback!
This is a community solution addressing the feature request in the linked post, providing immediate functionality while we wait for official implementation.
Note: Tracks usage analytics.
Edit:
Note: This is not yet completed but can test it out.
NEW FEATURE: URL Shortener
Integration I’ve added a URL shortening capability to the service, making it even more versatile for AppSheet users.
How to Use URL Shortener
-
Create a Custom Action in AppSheet
-
Set the action type to “Open URL”
-
Use this formula in the URL field:
CONCATENATE("https://copy-to-clipboard.onrender.com/shorten/", ENCODEURL([Your_URL_Column]))
When users click the action: - A new tab briefly opens - A shortened URL is created and copied to their clipboard - The tab automatically closes - Use cmd + v or ctrl + v to paste the shortened
URL Example: Long URL:
https://copy-to-clipboard.onrender.com/shorten/https://www.google.com
Note: This is not yet completed but can test it out.


