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

View all the Fabric Data Days sessions on demand. View schedule

Reply
Anonymous
Not applicable

compare with previous values and print the highest

Hello everyone,

 

I have a problem to compare value with previous values from the previous row to print the value that is highest. Here is the measure that I have created but the values does not same with my expected result.

 

highest previous kW =
CALCULATE( [values measure],
TOPN(1FILTER(table [DateTimeLocal.1.1] <= MIN(table[DateTimeLocal.1.1])),
[values measure], DESC))

 

I am trying to get the values as in column "highest previous" below.

nurul_ain_0-1639736593623.png

 

If anyone knows or can help me on this please let me know ya! Thanks a lot!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , New measure assuming "values measure" is a measure

 

previous kW =
CALCULATE( [values measure],FILTER(allselected(table), [DateTimeLocal.1.1] = maxx(FILTER(allselected(table), [DateTimeLocal.1.1] < Max(table[DateTimeLocal.1.1])),table[DateTimeLocal.1.1]) ) )

 

 


highest previous kW =
CALCULATE( maxx(values([DateTimeLocal.1.1] ), [values measure]) ,FILTER(allselected(table), [DateTimeLocal.1.1] < Max(table[DateTimeLocal.1.1])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , New measure assuming "values measure" is a measure

 

previous kW =
CALCULATE( [values measure],FILTER(allselected(table), [DateTimeLocal.1.1] = maxx(FILTER(allselected(table), [DateTimeLocal.1.1] < Max(table[DateTimeLocal.1.1])),table[DateTimeLocal.1.1]) ) )

 

 


highest previous kW =
CALCULATE( maxx(values([DateTimeLocal.1.1] ), [values measure]) ,FILTER(allselected(table), [DateTimeLocal.1.1] < Max(table[DateTimeLocal.1.1])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

I have tried the measure for "highest previous kW" that you have given and it works for me. Thank you so much sir! 😊

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors