0

How to add button to a form in PowerApps. Clicking the button should navigate to the hyperlink provided.

Jason Geiger
  • 1,912
  • 18
  • 32
Pooja Nekar
  • 11
  • 1
  • 2

1 Answers1

0

Let's say you have a text box called "TextInput1" and a button called "Button1".

On the button's "Select" event you would put

Launch(TextInput1.Text);

If you would rather close the PowerApp and redirect to a different URL you would do this...

Exit(Launch("https://google.com"));

Or this if you want to pull the location from the text box...

Exit(Launch(TextInput1.Text));
Jason Geiger
  • 1,912
  • 18
  • 32