Forum Discussion
AlanP514
4 years agoPost Patron
Dax Error
Hai All I need help on this Requirement: Want to create a pie chart 1 by default it should show max month otherwise it should show selected month v/s category column(column consist of different c...
- 4 years ago
Please try
CM = VAR MaxMonth = CALCULATE ( MAX ( Initiative[Year Month] ), REMOVEFILTERS ( 'Calendar' ) ) VAR SelectedMonth = SELECTEDVALUE ( 'Calendar'[Year Month] ) VAR FinalMonth = IF ( [Is Year Filtered] = TRUE (), MaxMonth, SelectedMonth ) RETURN CALCULATE ( [# Model Number], 'Calendar'[Year Month] = FinalMonth )
Jihwan_Kim
4 years agoSuper User
Hi,
May I ask and please check how is the column 'Initiative'[Year Month] look like? Is it looking like the same as 'Calendar[Year Month Name] ?
AlanP514
4 years agoPost Patron
Hai Jihwan_Kim Above image from the calendar table and below image from the initiative table
Please give a solution to rectify