Forum Discussion

EMaker's avatar
EMaker
Regular Visitor
1 year ago
Solved

IF OR Dax Measure

Hi,   Does anyone know how I can write the below Excel formula into a DAX Measure i'm struggling to select information for Column D2  as it keeps providing a function instead of the column.  =IF(...
  • Sahir_Maharaj's avatar
    1 year ago

    Hello EMaker,

     

    Can you please try this approach:

    CalculatedMeasure = 
    IF(
        OR(
            MAX(Table[I]) >= MAX(Table[D]),
            ISBLANK(MAX(Table[D]))         
        ),
        0,                                  
        5 * MAX(Table[E])                   
    )