I want a cumulative line chart for PY and CY sales on the same visual. I have it working right now, except I want PY sales to show for the whole year, not just YTD like CY sales are. So, it looks like this:
but I want to see all of the previous year sales.
This is my measure right now.
IncentiveSumTestPY =
var yearnum = LOOKUPVALUE('dw dimDate'[YearNum],'dw dimDate'[FullDate], today())
RETURN
if(max('dw dimDate'[FullDate])>today(), blank(),
CALCULATE(sum('dw factSales'[IncentiveSales]), filter(all('dw dimDate'), 'dw dimDate'[DayNumOfYear]<=max('dw dimDate'[DayNumOfYear])),'dw dimDate'[YearNum]=yearnum-1
))
Solved! Go to Solution.
Nevermind, I solved this myself.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
241 | |
56 | |
49 | |
45 | |
44 |
User | Count |
---|---|
280 | |
211 | |
82 | |
76 | |
75 |