Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Brotedo
Helper I
Helper I

Make Data Stop Showing in the Future

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:

Brotedo_0-1665157726274.png

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])

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@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))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@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))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

This works!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.