If data is in A1 or B1 or C1 or D1, put it in E1. (Data, if there is any, can be in only 1 of those 4 cells.)

SandsB

Well-known Member
Joined
Feb 13, 2007
Messages
738
Office Version
  1. 365
Platform
  1. Windows
....so basically I need the data that's in one of those cells to be in a single column. There's never data in more than 1 of those 4 cells and most of the time the cells are empty. There's about a million rows so I could really use a formula to make things easier.
TIA
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Would this work?
Book1
ABCDE
1A1A1
2B2B2
3C3C3
4D4D4
Sheet1
Cell Formulas
RangeFormula
E1:E4E1=CONCATENATE(A1,B1,C1,D1)
 
Upvote 0
Hi SandsB,

Try this:

Excel Formula:
=IFERROR(XLOOKUP(TRUE,NOT(ISBLANK(A:A)),A:A),"")

Regards,

Robert
 
Upvote 0
Upvote 0
Array option:
Book3
ABCDE
1A1A1
2B2B2
3C3C3
4D4D4
Sheet7
Cell Formulas
RangeFormula
E1:E4E1=TOCOL(A1:D4,1)
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,226,117
Messages
6,189,069
Members
453,524
Latest member
AshJames

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top