Sequential numbering based on dublication of two columns

Hi 

Could anyone perhaps direct me on the correct expression for what I want to achieve below?

Skip2MiLu_0-1677343469060.png

 

Solved Solved
0 2 104
1 ACCEPTED SOLUTION

If you're talking about the column's initial value, try something along the lines of:

COUNT(SELECT(Table[User], AND([Workout Day] = [_THISROW].[Workout Day],[Exercise Name] = [_THISROW].[Exercise Name])) + 1

If this is a child table, you might be able to utilize a technique like:

COUNT([Parent ID].[Related Child Rows]) + 1

Additional information in  Serial Numbers, If You Must - Google Cloud Community

View solution in original post

2 REPLIES 2

If you're talking about the column's initial value, try something along the lines of:

COUNT(SELECT(Table[User], AND([Workout Day] = [_THISROW].[Workout Day],[Exercise Name] = [_THISROW].[Exercise Name])) + 1

If this is a child table, you might be able to utilize a technique like:

COUNT([Parent ID].[Related Child Rows]) + 1

Additional information in  Serial Numbers, If You Must - Google Cloud Community

Thanks @dbaum ! The 1st expression is what needed.

Top Labels in this Space