I have 3 columns that I am comparing or pulling information from. I need to use my remarks column to verify if "same as submitted" is present, if so and Column 3 is null, then replace with Column 2.
Example:
| Remarks | Column 2 | Column 3 |
| same as submitted | 12345678911 | "null" |
| 123546548 | 55555564891 | 123546548 |
| xyz | 565765454 | "null" |
Expected results:
| Remarks | Column 2 | Column 3 |
| same as submitted | 12345678911 | 12345678911 |
| 123546548 | 55555564891 | 123546548 |
| xyz | 565765454 | "null" |
Current formula that I am using to replace the "null" in Column 3 with the value in Column 2, but I am only wanting this to replace the "null" in Column 3 if remarks are "same as submitted". I want the remarks that are "xyz" with a "null" in Column 3 to remain "null".
IF (IsNull([Column 3])) THEN
[Column 2]
ELSE
[Column 3]
ENDIF
Stuck,
Shelley