Forum Discussion

ppgandhi11's avatar
ppgandhi11
Helper V
7 years ago
Solved

Data formatting question - Desktop

Hi,   I have a measure that brings values for some of the records. So wherever it is applicable, it brings correct values. At other rows, it remains blank because it is not applicable there.   I ...
  • parry2k's avatar
    7 years ago

    ppgandhi11 try following

     

    Measure Val =
    VAL myCalculation = SUM( Table1[Amount]) -- put your measure calculation here
    RETURN
     IF( myCalculation = BLANK(), "N/A", myCalculation)