Want to count up when change occurs in either of two data columns
So I have 2 columns of data that have many identical values but which increment at certain points. They are the month and date of data points. Example:
MonthDayDesired Counter:111111222233314314
Ive tried using lag unsuccessfully as I dont want an increment unless a value changes. I've tried different solutions including:
If(
Row() == 1, 1,
Lag( :Month, 1 ) & Lag( :Day, 1 ), Lag( :DesiredCou
...