24 May 2021

Power Apps - Open External URL

Technical article about Power Apps - Open External URL

functions pills
0 min read

How can we open external URL in Power Apps? for example another app or site?

Very simple:

“Launch” function. It need url as first (mandatory parameter) and if you need, you can also add parameters.

Example:

Launch( “https://powerapps.microsoft.com/it-it/blog/" )

Or if you need to pass parameters, one way is:

Launch( “https://www.google.com/search?"; { q: “powerapps” } )

That’s all.