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
sunil222
Helper II
Helper II

Show last month data in report

Hi,

 

How to show the last month data , Now we are in current month january 2024  , i need the last month i.e December 2023 data 

 

Please help me on this 

I used this formulae but the year is taking as current .

 

Last Month = CALCULATE(SUM('SalesTeamPerformance'[Actual]),YEAR('SalesTeamPerformance'[Month year])=YEAR(TODAY()) && MONTH('SalesTeamPerformance'[Month year])=MONTH(TODAY())-1)
2 ACCEPTED SOLUTIONS
Ahmedx
Super User
Super User

Thanks Ahmed

 

i got the solution

View solution in original post

4 REPLIES 4
Dangar332
Super User
Super User

hi, @sunil222 

try below

my first answer was wrong

now go with below

pre year pre month = 
var a = EOMONTH(MIN('Data Date'[Date]),-1)
var b = EOMONTH(MIN('Data Date'[Date]),-2)+1
var c =  CALCULATE([salesamountm],'Data Date'[Date]<=a,'Data Date'[Date]>=b)
return
c

 

Dangar332_0-1704114795512.png

 

Ahmedx
Super User
Super User

pls try htis

Screenshot_3.png

Thanks Ahmed

 

i got the solution

Dangar332
Super User
Super User

hi, @sunil222 

 

try below measure 

pre year pre month = 
var a = EOMONTH(MIN('Data Date'[Date]),-13)
var b = EOMONTH(MIN('Data Date'[Date]),-14)+1
var c =  CALCULATE([salesamountm],'Data Date'[Date]<=a,'Data Date'[Date]>=b)
return
c

Dangar332_0-1704113450230.png

 

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.