Forum Discussion

jcastr02's avatar
jcastr02
Post Prodigy
5 years ago
Solved

merging columns with rules

How can I merge two columns into new column (col C) where if col A and B are equal then it should only give me the value of what is first column.  If they are not equal then merge two columns togethe...
  • jdbuchanan71's avatar
    5 years ago

    You could add this as a new calculated column:

    Col C = IF ( [Col A] = [Col B], [Col A], [Col A] & [Col B] )