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
pablopablo
Frequent Visitor

Finding the a column value of the last two most recent dates

Hi,

 

I have some data which has an assessment rating with an assessment date for several centres. Each centre may have 1 or more assessments. 

 

I am trying to get the assessment rating for the most recent assessment date, then the assessment rating for the first data prior to the most recent date so I can compare the two assessments.

 

Any ideas who I could achieve this?

1 REPLY 1
Anonymous
Not applicable

@pablopablo Please create a measure to get the current and previous rating

Latest = 
VAR _date = MAX('Table'[Date])
VAR LatestRating = CALCULATE(MAX('Table'[Rating]),'Table'[Date]=_date)
VAR _priordate = CALCULATE(MAX('Table'[Date]),FILTER(ALL('Table'),'Table'[Date]<_date))
VAR _priorrating = CALCULATE(MAX('Table'[Rating]),'Table'[Date]=_priordate)
RETURN LatestRating-_priorrating

latest rating is the rating for latest date
then calculate the previous assessment date and rating on previous assessment date

finally comparing current and previous 

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.

Top Solution Authors