Learning Playground

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

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
  • Change to Not(1=1) to show that false is returned
  • Change to Not(1=2) to show that true is returned