March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
Request your guidance to overcome this issue
My Boss wants to compare the sales of current day ( say 03rd September 2022 ) with sales of same date of last month ( i.e. 03rd August 2022). I got a slicer for selecting the date, so if we select 03rd September 2022 it will show the sales for today but how can we display sales for the same day on last month ( 03rd August 2022). We have to consider months with 31 days / 30 days etc.
kindly advice
regards,
dsmitha
Solved! Go to Solution.
@dsmitha Maybe:
Measure =
VAR __Date = MAX('Table'[Date])
VAR __EOLM = EOMONTH(__Date,-1)
VAR __EOLMDay = DAY(__EOLM)
VAR __Day = DAY(__Date)
VAR __LMDay = IF(__EOLMDay < __Day, __Day, __EOLMDay)
VAR __LMDate = DATE(YEAR(__EOLM),MONTH(__EOLM),__LMDay)
RETURN
SUMX(FILTER(ALLSELECTED('Table',[Date]=__LMDate),[Sales])
Hi,
If the date selected is July 31, 2022, then what would be the date of the "same day last month"?
@dsmitha Maybe:
Measure =
VAR __Date = MAX('Table'[Date])
VAR __EOLM = EOMONTH(__Date,-1)
VAR __EOLMDay = DAY(__EOLM)
VAR __Day = DAY(__Date)
VAR __LMDay = IF(__EOLMDay < __Day, __Day, __EOLMDay)
VAR __LMDate = DATE(YEAR(__EOLM),MONTH(__EOLM),__LMDay)
RETURN
SUMX(FILTER(ALLSELECTED('Table',[Date]=__LMDate),[Sales])
Hi Greg_Deckler,
Thank you very much for your super quick solution, it worked fine
thanks again
dsmitha
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
86 | |
77 | |
57 | |
52 |
User | Count |
---|---|
201 | |
137 | |
108 | |
73 | |
68 |