Forum Discussion
Teodor_TRU
9 years agoFrequent Visitor
How have a graph ignore data holes
I want to have the graph lines that I highlited not display if there is no data linked to them. Setting the X asis to categorical does not work as my original dates are incosistent and ...
- 9 years ago
Can you post the Measure formula you are plotting?
It looks like you need to add an additional FILTER argument
Look here
http://community.powerbi.com/t5/Desktop/cumulative-sum/m-p/113572#M47911
Hope this helps! :smileyhappy:
Sean
Community Champion
9 years agoCan you post the Measure formula you are plotting?
It looks like you need to add an additional FILTER argument
Look here
http://community.powerbi.com/t5/Desktop/cumulative-sum/m-p/113572#M47911
Hope this helps! :smileyhappy:
- Teodor_TRU9 years agoFrequent Visitor
Genius. It worked !
- Teodor_TRU9 years agoFrequent Visitor
Workable = CALCULATE ( COUNTROWS (dr_summary), dr_summary[Status] = "OPEN", FILTER ( ALL ( dr_summary[Due Date]), 'dr_summary'[Due Date] <= MAX ( 'dr_summary'[Due Date] )) )I'll try out the solution in the post you suggested.