Daily DAX : Day 11 AND
The AND function checks two logical expressions and returns a single boolean valaue (TRUE/FALSE) if BOTH logical expression return a TRUE value
Syntax
AND(<Logical /Expresssion 1?>,<Logical Expression 2>)
e.g. to check if an amount is between 0 and 100 you could use DAX(amount >0, amount <101) would return TRUE if amount is say 50 and FALSE if amount is say 200
Comments
Post a Comment