Forum Discussion
Alexander Vrints
Feb 02, 2018Copper Contributor
Combine two columns without having duplicate data
Hello,
I need to combine columns, but I only want one value per column. -If one column is empty, I want the value of the other in the new column.
-If both columns are different I want one ...
- Feb 03, 2018
Hi Alexander,
Do you mean
=IF(LEN(A1)=0,B1,A1)
?
SergeiBaklan
Feb 03, 2018Diamond Contributor
Hi Alexander,
Do you mean
=IF(LEN(A1)=0,B1,A1)
?
- Alexander VrintsFeb 06, 2018Copper Contributor
Yes that's it!
Thank you