Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
I have an IF statement with multiple conditions joined with && (AND). Some of the conditions are simple whereas others may take some time to compute.
Does DAX stops evaluation of multiple && if let's say first condition returns FALSE? Or all conditions must be evaluated first and then do the comparison?
Example:
IF ( ISBLANK([Measure]) && ISBLANK(CLACULATE([Measure], ALLSELECTED('Table1')) && HASONEVALUE('Table2'[Val1]) && MIN('Table2'[Val1]) = 'test'
, TRUE()
, FALSE()
)
Solved! Go to Solution.
@Anonymous The existence of IF.EAGER tends to indicate the former. IF.EAGER function (DAX) - DAX | Microsoft Docs
@Anonymous The existence of IF.EAGER tends to indicate the former. IF.EAGER function (DAX) - DAX | Microsoft Docs
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |