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 project code

 

I know I can introduce a visual filter to remove rows where contract amt is blank but I have been asked to keep off visual filters because they want users to not be able to change any of the filters

 

I am trying to write this in DAX but to no avail

 

Sum of Contract Amt2 = CALCULATE( [Sum of Contract Amt],Not(ISBLANK(Awards[CONTRACT_AMT])))

 

Regards
Swati

  • 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])

3 Replies

  • 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 project code

     

    I know I can introduce a visual filter to remove rows where contract amt is blank but I have been asked to keep off visual filters because they want users to not be able to change any of the filters

     

    I am trying to write this in DAX but to no avail

     

    Sum of Contract Amt2 = CALCULATE( [Sum of Contract Amt],Not(ISBLANK(Awards[CONTRACT_AMT])))

     

    Regards
    Swati

    • Ashish_Mathur's avatar
      Ashish_Mathur
      Super User

      Hi,

       

      Try this

       

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

  • BILASolution's avatar
    BILASolution
    Solution Specialist

    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