I have a column that I would like to change the values in the cell where there is no error to be the value in another column, if the value is null then I want to replace it with the word "CONFIRMED"
What is the proper way of doing this in the editor?
example of what I am looking for:
Before:
after:
What is the proper way of doing this in the editor?
example of what I am looking for:
Before:
Column1 | Column2 |
PREBOOK | 2021-01-01 |
Yes | Error |
No | Error |
null | 2021-01-02 |
after:
Column1 | Column2 |
PREBOOK | PREBOOK |
Yes | Error |
No | Error |
null | CONFIRMED |