Hi,
I want the multi row formula to add numbers when there is non null cell.
How can I do it?
I have the values currently as:
| RecordID | Address |
| 1 | |
| 2 | |
| 3 | 1 |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | 1 |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
I want them to be
| RecordID | Address |
| 1 | |
| 2 | |
| 3 | 1 |
| 4 | 2 |
| 5 | 3 |
| 6 | 4 |
| 7 | |
| 8 | |
| 9 | |
| 10 | 1 |
| 11 | 2 |
| 12 | 3 |
| 13 | 4 |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
I am using the multi row tool to be :
If !isNull([Address])
THEN [Row+1:Address] +1
ELSE [Address]
ENDIF
But its not cutting it..
what should the multirow formula be?
Please find attached workflow for reference