Fill cell with value

Copper Contributor

yusnazery_0-1641868652411.png

How to fill E column with cell with data from A to D column. ABCD column will only consist of one data for 

3 Replies
=CONCAT(A1:D1)
or maybe =concatenate(A1:D1) if you are running an old version

@yusnazery 

 

You can use the formula textjoin = (,TRUE,A1:D1)

The first option is the delimiter you are going to use to join the text (we are going to skip it), then if you want to skip blanks as true and finally the text range that you want to join in one cell.

alannavarro_0-1641873289018.png

 

@yusnazery 

As variant

=FILTER( A1:D1, A1:D1 <> "" )