Here I am counting redundant rows based on info held in 2 columns (Batch ID & Value [concentration]).
Col Cumulative Sum( 1, :Batch ID, :"Value [concentration]"n )
However, based on whether Value [concentration] is formatted as continuous or character variable in my table, a different result is obtained (see screenshots below).
Outcome with Value [concentration] as continuous variable (not what I want)
Outcome with Value [concentration] as character variable (what I want)
Is there some computational issue (missing values...?) I need to wrap my head around to understand this?
Thank you!
P.s.: I realize that it may appear nonsensical to count combinations of Batch ID and missing values, but there are practical reasons for this at the time of writing.
Edit: Revised "nominal" to "character" in text.