Forum Discussion
Graph with only specific columns showing
- 2 years ago
Hello SammyNed ,
Hope you are doing well.
Kindly find the dataset I created:
Measures:
Result:
If this helps, then kindly give it a kudos and mark it as a solution.
Best Regards,
Keyur Patel
Hi SammyNed ,
I create a table as you mentioned.
Then I create two measures and here are the DAX codes.
Forecast Measure = IF(SUM('Table'[Forecast])=286,286,0)
Target Measure = IF(SUM('Table'[Target])=256,256,0)
Finally I put them into the Clustered column chart and it gives the result you want.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi Anonymous
This appears to be on the right track, however its not dynamic. Is it possible to include a filter to say only show the forecast data if it occurs within the current month. i know i can use EOMonth, but unsure how to incoroprate it
Forecast Measure = IF(SUM('Table'[Forecast])=CurrentMonth,forecast,0))