CategoriesPower Apps

Power Apps – Open External URL

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.

Leave a Reply

Your email address will not be published. Required fields are marked *