Forum Discussion
akash_Varma
7 years agoFrequent Visitor
Power Bi Visuals
Hi there,
I am trying to create a Cumulative graph, I managed to pull up data and calculate values,
I am now struggling with removing values which are yet to be calculated for eg. Aug 19 and Sep 19.
I want to remove the line from the graph but would like to keep them on the axis
Thank you, :)
3 Replies
- v-chuncz-msftCommunity Support
- akash_VarmaFrequent Visitor
I have already tried that it didn't work
- Ashish_MathurSuper User
Hi,
Assuming the blank line represents measure1, try this measure
=IF(ISBLNK([Measure1]),BLANK(),[Measure1])
Hope this helps.