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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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)

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.