Hi all,
I have an existing data table that looks like this. If the Middle Column is a No, then I would like to fill in the Customer ID Column with the last Customer ID.
| Input | Yes / No / Blank | Customer ID |
| 1 | Yes | Customer_1 |
| 2 | No | |
| 3 | No | |
| 4 | Yes | Customer_2 |
| 5 | | |
| 6 | No | |
| 7 | No | |
| 8 | No | |
The desired end product looks like this.
| Input | Yes / No / Blank | Customer ID |
| 1 | Yes | Customer_1 |
| 2 | No | Customer 1 |
| 3 | No | Customer 1 |
| 4 | Yes | Customer_2 |
| 5 | | |
| 6 | No | Customer_2 |
| 7 | No | Customer_2 |
| 8 | No | Customer_2 |
The presence of the empty row in Row 5 means that I was unable to use the Multi-row tool with expression (IF ISEMPTY([Customer ID]) THEN [Row-1:Customer ID] ELSE [Customer ID] ENDIF) because looking back one row is not sufficient when there is an empty row.
Any guidance on how I can go about solving this? All inputs are much appreciated.