Follow-up to question 63893967:
How can I achieve the same result of...
giv[ing] a running count of Issues for a given day. In other words: the output should enumerate each Issue for a given date (returning blank if Issue is blank), and then start again at 1 for the first issue in a subsequent date
...but not use an ArrayFormula? i.e. I'd like to have a formula in each row, but the same values outputted as column J. The reason is that the iOS app crashes every time I open this spreadsheet on it now that I have the ArrayFormula in there.
Sample spreadsheet, looking on "Formula per row method" tab:
- Column
Bcontains the date - Column
Econtains the T-shirt size severity of each Issue - Column
Fcontains a numerical translation of column E - Column
Gcontains a binary output of whether there was an Issue in that row - Column
Icontains the ArrayFormula method:
=ArrayFormula(IF(F3:F="",,MMULT((ROW($B3:$B)>=TRANSPOSE(ROW($B3:$B))) * EXACT($B3:$B,TRANSPOSE($B3:$B))^1, ($G3:$G)^1)))
- Column
Lreconciles the attempt in columnJagainst the source of truth in columnI
