Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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?
@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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
20 | |
14 | |
10 | |
10 | |
10 |
User | Count |
---|---|
15 | |
13 | |
12 | |
11 | |
10 |