Forum Discussion
manishbeniwal
7 years agoFrequent Visitor
How to show missing month in chart
- 7 years ago
You may try to create a measure with IF Fuction like below:
Measure = IF ( MAX ( 'Table'[date] ) <= DATE ( 2019, 3, 31 ) && MAX ( 'Table'[date] ) >= DATE ( 2018, 4, 30 ), SUM ( 'Table'[Amount] ) + 0 )Regards,
manishbeniwal
7 years agoFrequent Visitor
By this feature it is showing all 2018 and 2019 months in X-axis. I want to start X-axis from Apr 2018 and last month will be Mar-19.
tex628
Community Champion
7 years agoAdd +0 to your sum.
Measure = Sum(Table[Amount]) + 0