0

I am attempting to combine two columns in Excel 2016, with a space between the results. My problem is being able to use ISBLANK to ignore blanks on either column, and still have the space delimiter in the final result when two fields are combined.

Example:

enter image description here

Service Desk Bunny
  • 2,708
  • 1
  • 21
  • 32

2 Answers2

1

If you have data in columns A and B and if you only want a space if there is data in both columns, then something like this will work.

=A1&IF(AND(A1<>"",B1<>"")," ","")&B1
FlexYourData
  • 6,430
  • 2
  • 6
  • 21
1

Try TEXTJOIN function:

=TEXTJOIN(" ",TRUE,A1,B1)

enter image description here

Lee
  • 2,923
  • 1
  • 6
  • 8