Forum Discussion
Anonymous
7 years agoNot applicable
Dax formula error
Hi experts I have the following DAX formula.....which do not work with certain visuals...but work with others. i am trying to work out the previous 12 months based on a selected year and month fi...
TomMartens
7 years agoSuper User
Hey,
just post the dropbox link!
regards,
Tom
Anonymous
7 years agoNot applicable
1. the data in the link file you#ll need to chnage table name to dimdate and add a date hierarchy to the sales table....
also i have managed to get t his far - but the measure only gives me the current period 12 months rolling...
2. i want to show two visuals one in a clustered bar chart showing the previous 12 period and secondaly a card that dynamically changes to reflect the current month only...
Datefilter12Month =
VAR MonthsToLookBack = 12
VAR DataTableDate =
MAX ( 'DimDate'[Date] )
RETURN
CALCULATE (
SUM ( Sales[Sales] );
DATESINPERIOD ( dimDate[Date]; DataTableDate; - MonthsToLookBack; MONTH )
)- Anonymous7 years agoNot applicable