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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
dsmitha
Responsive Resident
Responsive Resident

Sales comparison - current day sales with sales on same day last month

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 

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

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

@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

If the date selected is July 31, 2022, then what would be the date of the "same day last month"?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Greg_Deckler
Super User
Super User

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

@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi  Greg_Deckler,

 

Thank you very much for your super quick solution, it worked fine

 

thanks again

 

dsmitha

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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