In this video, I'm going to go into how to use the If function! It's like a detective that checks conditions until it stumbles upon the truth, except it can also find the false outcomes too with multiple-layers of checking. This is the video for you if you're looking to refresh your memory on the Power Fx If function or you're a beginner to low code/no code and haven't ever seen anything like this before!
I use Power Apps as the demo, but it's used the same anywhere Power Fx is used. All demo code is below:
True Only:
If( Slider1.Value = 10, "ResultTrue" )
True and False Values:
If( Slider1.Value = 10, "ResultTrue", "ResultFalse" )
Multiple Conditions:
If( Slider1.Value = 10 And Slider2.Value = 20, "ResultTrue", "ResultFalse" )
Nested Ifs:
If( Slider1.Value = 10, "ResultTrue", If( Slider2.Value = 20, "Result20True", "Result20False" ))
Check out my website at https://www.flowjoe.io/ to find more Power Platform and Power Fx resources.
#powerapps #powerfx #copilotstudio
Chapters:
00:00 - What is the IF function?
01:04 - True Only If Functions
03:50 - True and False If Functions
04:40 - Multiple Conditions
06:06 - Nested If Functions
08:11 - Demo