Forum Discussion

svishwanathan's avatar
svishwanathan
Helper III
8 years ago
Solved

Not include blank in table

Hello   I need help with writing a DAX statement. I  have a table that has project code and contract amt. Currently the table returns values even when there is no contract amount as long there is a...
  • BILASolution's avatar
    8 years ago

    Hi svishwanathan

     

    I don't understand very well, I hope this is what you're looking for...

     

    Sum of Contract Amt 2 = IF(ISBLANK(FIRSTNONBLANK(Awards[Contract amt];1));BLANK();[Sum of Contract amt]) 

    Regards

    BILASolution

  • Ashish_Mathur's avatar
    Ashish_Mathur
    8 years ago

    Hi,

     

    Try this

     

    =IF(ISBLANK(Awards[Contract_Amt]),BLANK(),[your_measure])