I'm trying to do something I don't know if it can be done. I want to add the number of consecutive 12's until a 0 is hit (this is my data that changes frequently). The results would give the total of the consecutive 12's.
I've hit a brick wall with this. Any ideas?
I've hit a brick wall with this. Any ideas?
Book1 | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | I | J | K | L | M | N | O | |||
4 | DATA | 0 | 12 | 12 | 12 | 0 | 0 | 0 | 12 | 12 | 12 | 12 | 12 | 0 | ||
5 | ||||||||||||||||
6 | EXPECTED | |||||||||||||||
7 | RESULTS | 0 | 36 | 36 | 36 | 0 | 0 | 0 | 60 | 60 | 60 | 60 | 60 | 0 | ||
Sheet1 |