Welcome to the learning playground a space to try interactive concepts related to Power Fx and testing. You can use the steps of each playground task to explore different key concepts.
Once have completed each set of learning playground concepts have a look at related learning playground tasks to build your knowledge.
Boolean Expressions
Explore different true / false expressions in Power Fx
1
2
1=1
Results
Playground Steps
You can try the following to experiment with this playground task:
Press "Try It!" to see that the value of true is returned
Change 1=1 to 1=2 and see that false is returned
Change to "a"="a" to see that the value of true is returned
Change to "a"="b" to see that the value of false is returned
Change to And(1=1,"a"="a") to check both of the values are true
Change to Or(1=1,"a"="b") to check that either one of the conditions is true