Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
svishwanathan
Helper III
Helper III

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

2 ACCEPTED SOLUTIONS
BILASolution
Solution Specialist
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

View solution in original post

Hi,

 

Try this

 

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


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

3 REPLIES 3
BILASolution
Solution Specialist
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

svishwanathan
Helper III
Helper III

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,

 

Try this

 

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


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.