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,
v-cherch-msft
Microsoft Employee
7 years agoYou 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,