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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

Track changes in Rows, post a value when occurs

Hi, 

 

I want to track when a new Variant is being registered/produced in my dataset in the column changeover

 

My table looks similar to this

 

IDVARIANTChangeover
1A 
2A1
3A1
4B0
5B1
6B1
7C0

 

 

Basically everytime that the previous row is not matching the next row, post changeover or 1 or 0 (W/E)

 

Blue equals desired state and is what i want to achieve

 

Hope someone can help

 

BR

Kristian

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I solved it like this

 

Match =
VAR __prevRow = CALCULATE( MAX( 'Table'[ID] ) ) - 1
VAR __PrevRowValue = CALCULATE( MAX( 'Table'[VAR] ), 'Table'[ID] = __prevRow )
VAR __currRowValue = CALCULATE( MAX( 'Table'[VAR] ) )
RETURN
IF( __currRowValue = __PrevRowValue, 0, 1 )

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@amitchandak Thanks for your reply,

 

I dont know if im doing it wrong but i get this result

 

krelz9210_0-1637831042848.png

 

amitchandak
Super User
Super User

@Anonymous , Create a new column like

 

new column =
var _max= Maxx(filter(Table, [ID] = earlier([ID])-1 ), [VARIANT])
return
if(_max =[VARIANT] ,1,0)

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 solved it like this

 

Match =
VAR __prevRow = CALCULATE( MAX( 'Table'[ID] ) ) - 1
VAR __PrevRowValue = CALCULATE( MAX( 'Table'[VAR] ), 'Table'[ID] = __prevRow )
VAR __currRowValue = CALCULATE( MAX( 'Table'[VAR] ) )
RETURN
IF( __currRowValue = __PrevRowValue, 0, 1 )

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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.