Insert 1 into blank cells in a column

Status
Not open for further replies.

bradyj7

Board Regular
Joined
Mar 2, 2011
Messages
106
Hi there,

I'm looking for a macro to insert the number 1 into blank cells in column B. The number of rows can vary from file to file.

Thank you for the help.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
What determines how many rows i.e. are there entries in column A for every row that you want to insert a 1 in column B?
 
Upvote 0
This code will enter 1 in all Col_B blank cells that are within the Used Range. If you need restrictions on the last Col_B cell to be considered, let us know
Code:
Sub PlugBlanks()
Dim ws As Worksheet
Set ws = ActiveSheet
ws.Range("B:B").SpecialCells(xlCellTypeBlanks).Value = 1
End Sub
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,224,586
Messages
6,179,728
Members
452,939
Latest member
WCrawford

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