You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks @hernandemczuk, but I'm not familiar enough with DAX to feel confident adding it as an example myself. If you submit a PR, I'd be happy to merge it.
There are not that many examples of this in Data Analysis Expressions (DAX),
It would be:
EVALUATE { VAR _sum = 0.1 + 0.2 // 0.30000000000000004 RETURN IF( _sum = 0.3, ":)", ":(" ) }
EVALUATE { VAR _sum = CURRENCY( 0.1 ) + CURRENCY( 0.2 ) // 0.3 RETURN IF( _sum = 0.3, ":)", ":(" ) }
The text was updated successfully, but these errors were encountered: