Is it possible to have a column calculate a counter that restarts when another column's value changes?
What I mean, imagine 3 columns:
* Event name
* Topic name
* Feature number
I want to make Feature number a counter. And I want the counter to restart every time the Event name and Topic name changes. I have a feeling it can't be done with a formula, and I'm looking at the automation to update the Feature number cell whenever a row is added. But I haven't figured out yet the formula to calculate the max(Feature number) for the combination of Event name and Topic name from the current row. and then add 1 to it
I tried setting up an automation to update Feature number when a new row is added and the value for the Feature number
=MAX(COLLECT([Feature Number], [Event Name], [Event Name]@row, [Topic Name], [Topic Name]@row))+1
but my Feature Number is blank after I save the sheet. (I manually had entered 1 for the first Pairing number thinking that for a new sheet the max would be Null.