I am trying to build a DAX measure in a Power Pivot to show the Like for Like sales figure (LFL). LFL is simply a measure to show the sales if the customer also had sales during the same period last year.
I can not get any figures at all for this, and this is due to the previous year not working for some reason.
The formula I am trying to use is
=CALCULATE([Total Sales];FILTER(Data;[Total Sales]>0 && [Prev.year sales]>0))
This formula works but gives no data for any selection.
Just to test, I made formula just to show previous year's sales. Also this formula gives no values for any customers.
=CALCULATE([Prev.year Sales];FILTER(Data;[Prev.year Sales]<>0))
The formula [Prev.year Sales] looks like this, and does work as intended:
=CALCULATE([Total Sales];SAMEPERIODLASTYEAR('Calendar'[Date]))
Any ideas what is wrong? Thanks!
I can not get any figures at all for this, and this is due to the previous year not working for some reason.
The formula I am trying to use is
=CALCULATE([Total Sales];FILTER(Data;[Total Sales]>0 && [Prev.year sales]>0))
This formula works but gives no data for any selection.
Just to test, I made formula just to show previous year's sales. Also this formula gives no values for any customers.
=CALCULATE([Prev.year Sales];FILTER(Data;[Prev.year Sales]<>0))
The formula [Prev.year Sales] looks like this, and does work as intended:
=CALCULATE([Total Sales];SAMEPERIODLASTYEAR('Calendar'[Date]))
Any ideas what is wrong? Thanks!