column one to column two without blank cell

white_flag

Active Member
Joined
Mar 17, 2010
Messages
331
Hello I have one column with names but also blank cells. I like to put in an diffrent column data from the first column except the blank cell and if on the first column will add extra data the second column to make an update.. with OFFSET? it is possible?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
column 1 column2
1________1
5________5
_________8
8________9
9________8
_________9
8________9
_________
9________
9________

like this. and wen an number it is been add to col1 col2 to make an update
 
Upvote 0
B1 =IF(ISERROR(MATCH(SMALL(C:C,ROW(C1)),C:C,0)),"",INDEX(A:A,MATCH(SMALL(C:C,ROW(C1)),C:C,0)))

C1 =IF(ISNUMBER(A1),ROW(),"")

Copy both formulas down to match col A
 
Upvote 0
Edit; you said in your question "names" bue example was numeric. If so change C1 to =IF(A1)<>"",ROW(),"")
 
Upvote 0
thx, it is working very well. But it is possible to be just one formula? I try to make an combination and it is not working
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,285
Members
452,902
Latest member
Knuddeluff

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