I'm trying to merge these two formulas so that it only works out the streak if the cell has a number (each cell has a formula in it but is blank)
Formula 1
=MAX(SCAN(0,B1:B,LAMBDA(a,b,(a+(b<>0))*(b<>0))))
Formula 2
=IF(ISNUMBER(B1:B).....Do a thing.....)
Some Test Data:
Daily session count
100
200
400
100
200
=IF(C9<>"",SUM(C9-C8),"")
200
300
=IF(C9<>"",SUM(C9-C8),"")
=IF(C9<>"",SUM(C9-C8),"")
=IF(C9<>"",SUM(C9-C8),"")
=IF(C9<>"",SUM(C9-C8),"")
The issue is related to this question: Excel - How to count streaks of non-zero numbers on one column