Hi All,
I have such a basic ask, but i am struggling to write the correct formula.
I have two columns, i am trying to write a simple formula that does the following ;
if column A is "blank" & column B is "not blank", then populate Column A with column B
Then Remove value from Column B
Input
| Column A | Column B |
| | 123 High Street |
Expected Outcome
| Column A | Column B |
| 123 High Street | |
I have used the following formula ;
If isnull([Column A]) then [Column B] else [Column A] endif
Current output
| Column A | Column B |
| 123 High Street | 123 High Street |