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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
RalphO
Helper I
Helper I

Count of change of values from x to y

Hey!

 

I've got the following data: 

timestate
2018-07-27 03:35:33.00000004
2018-07-27 03:35:35.00000004
2018-07-27 03:35:37.00000004
2018-07-27 03:35:39.00000004
2018-07-27 03:35:41.00000005
2018-07-27 03:35:43.00000005
2018-07-27 03:35:45.00000004
2018-07-27 03:35:47.00000004
2018-07-27 03:35:49.00000004
2018-07-27 03:35:51.00000006
2018-07-27 03:35:53.00000006
2018-07-27 03:35:55.00000006
2018-07-27 03:35:57.00000006
2018-07-27 03:35:59.00000004
2018-07-27 03:36:01.00000004
2018-07-27 03:36:03.00000006
2018-07-27 03:36:05.00000006

 

Now, i want to count how many times the state changes from 4 to 6. So the answer for this particular sample should be 2. NOTE: this has to be done with a measure, since I can not currently create calculated columns for my data set. 

 

Is this at all possible? And if yes, how do I do this??

 

Thanks in advance!

 

Ralph 

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @RalphO,

 

We can create the measures as below to achieve your goal.

 

 

rank = RANKX(ALLSELECTED(Table1),CALCULATE(MAX(Table1[time])),,ASC,Dense)
Measure = var pl = [rank]+1 
var sta = MAX(Table1[state])
return IF(sta=4 &&
CALCULATE(MAX(Table1[state]),FILTER(ALLSELECTED(Table1),[rank]=pl))=6,1,0)
result = SUMX(Table1,[Measure])

Capture.PNG

 

For more details, please check the pbix as attached.

 

Regards,

Frank

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @RalphO,

 

We can create the measures as below to achieve your goal.

 

 

rank = RANKX(ALLSELECTED(Table1),CALCULATE(MAX(Table1[time])),,ASC,Dense)
Measure = var pl = [rank]+1 
var sta = MAX(Table1[state])
return IF(sta=4 &&
CALCULATE(MAX(Table1[state]),FILTER(ALLSELECTED(Table1),[rank]=pl))=6,1,0)
result = SUMX(Table1,[Measure])

Capture.PNG

 

For more details, please check the pbix as attached.

 

Regards,

Frank

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

That works, thank you!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.