Forum Discussion
svishwanathan
8 years agoHelper 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...
- 8 years ago
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
- 8 years ago
Hi,
Try this
=IF(ISBLANK(Awards[Contract_Amt]),BLANK(),[your_measure])
BILASolution
8 years agoSolution Specialist
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