Google-sheets – Combine columns where there is only one data cell per row in Google Sheets

google sheets

I have Google Sheets data that looks like this:

    A | B | C 
   -----------
1 | a |   |  
2 |   | b | 
3 | c |   |
4 |   |   | d
5 |   | e | 
6 | f |   | 
7 |   |   | g
8 |   | h | 

I need to combine this data into one column like this:

| D |
-----
  a
  b
  c
  d
  e
  f
  g
  h

For every row, there is only one data cell in Columns A, B, or C. Is it possible to do this using a Google Sheets formula?

Thank you all for your help.

Best Answer

Data type : strings

use some concatenation. Try this in D1

=ArrayFormula(A:A&B:B&C:C)

Data type : value

If you have number data then include a VALUE() function like so:
=ARRAYFORMULA(VALUE(A:A & B:B & C:C))
Credit to @iandllnghm in the comments of this answer.