Forum Discussion

subho220's avatar
subho220
Icon for Helper I rankHelper I
6 years ago
Solved

IF 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...
  • v-lili6-msft's avatar
    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