Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a yearly cumulative sales line chart, along with a projection, but right now both the sales and projection begin from day 1 and go to day 365. I want the cumulative sales to stop at the current day (rather than being flat for the rest of the year) and, ideally, for the projection to start at the current day.
This is how it looks now:
This is the sales measure:
IncentiveSum =
var yearnum = LOOKUPVALUE('dw dimDate'[YearNum],'dw dimDate'[FullDate], today())
RETURN
CALCULATE(sum('dw factSales'[NetSalesAmount]), filter(all('dw dimDate'), 'dw dimDate'[DayNumOfYear]<=max('dw dimDate'[DayNumOfYear])),'dw dimDate'[YearNum]=2022)
And this is the projection:
LineProjection =
var DayNum = LOOKUPVALUE('dw dimDate'[DayNumOfYear],'dw dimDate'[FullDate], today())
var YearCur = LOOKUPVALUE('dw dimDate'[YearNum],'dw dimDate'[FullDate], today())
var Yearsum = CALCULATE(sum('dw factSales'[NetSalesAmount]),'dw dimDate'[YearNum]=2022, removefilters('dw dimDate'[DayNumOfYear]))
RETURN
divide(Yearsum, DayNum, 0)*max('dw dimDate'[DayNumOfYear])
Solved! Go to Solution.
@Brotedo Maybe:
IncentiveSum =
var yearnum = LOOKUPVALUE('dw dimDate'[YearNum],'dw dimDate'[FullDate], today())
RETURN
IF(MAX('dw dimDate'[Date]) > TODAY(),BLANK(),CALCULATE(sum('dw factSales'[NetSalesAmount]), filter(all('dw dimDate'), 'dw dimDate'[DayNumOfYear]<=max('dw dimDate'[DayNumOfYear])),'dw dimDate'[YearNum]=2022))
@Brotedo Maybe:
IncentiveSum =
var yearnum = LOOKUPVALUE('dw dimDate'[YearNum],'dw dimDate'[FullDate], today())
RETURN
IF(MAX('dw dimDate'[Date]) > TODAY(),BLANK(),CALCULATE(sum('dw factSales'[NetSalesAmount]), filter(all('dw dimDate'), 'dw dimDate'[DayNumOfYear]<=max('dw dimDate'[DayNumOfYear])),'dw dimDate'[YearNum]=2022))
This works!
User | Count |
---|---|
123 | |
77 | |
62 | |
50 | |
49 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |