Forum Discussion
Trist
5 years agoFrequent Visitor
IF Issue in Measure
Hello Everybody, how are you? ı have question about writing a row context dax in a ıf clause . ı want to wrıte this query(*1) ınsıde of this query(*2). how to do that do u think? *1: IF ...
Anonymous
5 years agoNot applicable
Hello Trist
You can try this
Measure 1 =
IF (
ISBLANK ( [Day] ),
BLANK (),
IF ( A[X] = "H", A[Y] * A[Z] * ( -1 ), IF ( A[X,] = "S", A[Y] * A[Z], 0 ) )
)