Could someone help me get the correct Multi-row formula?
I have a partial output as:
| RecordID | Identifier | Amount |
| 18 | | |
| 54 | | |
| 64 | Y | |
| 65 | | 37.5 |
| 66 | | 40.5 |
| 67 | Y | |
| 68 | | 22.5 |
| 69 | | 30.5 |
| 74 | | 53 |
| 82 | | |
| 83 | | |
I want the sum of the above all values till the next "Y" in the [Identifier]
as:
| RecordID | Identifier | Amount | Sum |
| 18 | | | |
| 54 | | | |
| 64 | Y | | |
| 65 | | 37.5 | |
| 66 | | 40.5 | 78 |
| 67 | Y | | |
| 68 | | 22.5 | |
| 69 | | 30.5 | |
| 74 | | 53 | 108 |
| 82 | | | |
| 83 | | | |
I am trying the multirow formula tool with the logic "If [Identifier] is null, add all above non null columns from [Amount] else null but I am unable to get it right.
Help is much appreciated.
Thanks