Hi all,
What I am trying to achieve is that by copying data from column A and pasting it into the empty cell's of column B without amending cells in column B that already has values.
Thanks!
Hi @gavinloi,
this is the formula that you need to use:
IIF(IsNull([B]), [A], [B])
Please see the workflow attached.
Hi @gavinloi
This can easily achieved by formula tool.
Input:
Workflow & output:
The formula needs to applied on Column B (Target column). IsEmpty() checks whether the column is Null or blank. IIF() is a if else condition if column B is empty then column B else remain unchanged and keep column B.
Hope this helps 🙂
Hi @atcodedog05,
Long time no see 🙂
Cookie monster is back 😄
Many thanks! It works 😀
Many thanks!😀