0

I have 2 columns (A & B) with text. Column A has a variety of text values and blanks. Column B always has matching text values to those values in column A, except for some blank values in column A will have a new value in column B. Ex:

Column A

blue
blank
red
blank

column B

blue
blank
red
yellow

I would want column C to display (in order)

blue
blank
red
yellow

Can a formula be created for this?

Scott Craner
  • 148,073
  • 10
  • 49
  • 81
E.Weave.
  • 19
  • 2

1 Answers1

0

a simple IF with AND:

=IF(AND(A1<>"",B1<>""),A1,A1&B1)

enter image description here

Scott Craner
  • 148,073
  • 10
  • 49
  • 81