IF ISBLANK formula using...

Babi_mn

New Member
Joined
Oct 4, 2023
Messages
12
Office Version
  1. 365
Platform
  1. Windows
Hello guys
I can not paste my value into only empty cell. I want to Copy F column numbers into C column only after yellow highlighted rows, which means right next to empty B cell.
here I attached screen shot of my Sheet. problem is I have 97k rows of it :(
Please help. How do I use IF or ISBLANK formula on this..?
 

Attachments

  • isblank.png
    isblank.png
    158.6 KB · Views: 7

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
How about this? Pate in an empty column row 1 & fill down.
Excel Formula:
=IF(ISBLANK(B1),OFFSET($F$1,ROW(B1)/2-1,0),B1)

Edit: This would not work. Did not notice the continuous empty cells.
 
Last edited:
Upvote 0
How about this? Pate in an empty column row 1 & fill down.
Excel Formula:
=IF(ISBLANK(B1),OFFSET($F$1,ROW(B1)/2-1,0),B1)

Edit: This would not work. Did not notice the continuous empty cells.
wow mister, this worked like a charm, Thanks a Lot
 
Upvote 0
wow mister, this worked like a charm, Thanks a Lot
It should've only worked on every other blank cell. If there's a continuous range of empty cells you would get the wrong result. It's hard for you to see because a lot of the values in F are repeated.
 
Upvote 0
It should've only worked on every other blank cell. If there's a continuous range of empty cells you would get the wrong result. It's hard for you to see because a lot of the values in F are repeated.
oh, thats right, some cells are duplicated.
 
Upvote 0
This should work but needs a few extra columns. Copy the formulas into columns C,D & E. Adjust the rows as needed.
Column E is the final result.

Book1
ABCDEF
11200225
21112511
32501518
42121116
5310212
6313188
7460361
8414166
9580482
1051523
1161684
126171
137186
147192
1581103
1681001010
Sheet3
Cell Formulas
RangeFormula
C1:C16C1=--(B1:B16="")
D1:D16D1=SUM($C$1:C1)
E1E1=B1
E2:E16E2=IF(ISBLANK(B2),CHOOSEROWS(F:F,D2),B2)
Dynamic array formulas.
 
Upvote 1
Solution
you are expert, this let me save days of work, i have 20 sheets that contains 100k columns each. thank you very much.
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,970
Members
449,095
Latest member
Mr Hughes

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