Power Apps Launch Function

I REALLY like the Power Apps Launch Function – you can use it to open a web page, sent an email, even make a phone call. Here’s a short video on how to use it and you can use the syntax below to make it work for you.
I REALLY like the Power Apps Launch Function – you can use it to open a web page, sent an email, even make a phone call. Here’s a short video on how to use it and you can use the syntax below to make it work for you.
If and Switch are two closely related formulas. As they are fundamental to creating conditional behaviour, they are also fundamental to being successful with Power Apps. Basically, you need to learn them!
Roughly speaking you’ll use if in the following circumstances:-
Switch is helpful if you are just looking at 1 field but would like to do different things based on the value in the field.
In the example if the formula was placed on a button inside a gallery we could use the button to navigate to different screens. “Hello” takes us to the Hello Screen, and “World” navigates us to the World screen
Switch(ThisItem.Title,
"Hello",Navigate(ScreenHello),
"World",Navigate(ScreenWorld)
)
In the video below I demonstrate how to use If and Switch
You can head over to the Microsoft Docs to take a detailed look by clicking below.
Good luck – and keep Power Apping!