Forum Discussion
subho220
Helper I
6 years agoIF DAX measure
I am trying to create a measure Like---- IF( Table[Reportable Result] ="Something", true,false). But this Reportable result column is not coming up after IF. Its a field coming from csv file. Can any...
- 6 years ago
hi subho220
First, you should know that:
1. Calculation column/table not support dynamic changed based on filter or slicer.
2. Measure can be affected by filter/slicer, so you can use it to get dynamic summary result in a visual by its row context.https://www.sqlbi.com/articles/calculated-columns-and-measures-in-dax/
Second, for your requriement, you could use this formula to create a meausre
Measure = IF( MIN(Table[Reportable Result]) ="Something", true,false)
Regards,
Lin
amitchandak
Super User
6 years agosubho220 , I a measure you have to try like
IF( max(Table[Reportable Result]) ="Something", true,false)
and it will depend on row context