Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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
Solved! Go to Solution.
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
Hi,
Try this
=IF(ISBLANK(Awards[Contract_Amt]),BLANK(),[your_measure])
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
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])