Filling the blanks in ActiveCell.CurrentRegion?

London_Calling

Active Member
Joined
Feb 27, 2007
Messages
256
Morning.

I'm pretty sure there's a straightforward way to select a range, perhaps like this:

Code:
myrange = ActiveCell.CurrentRegion

... and, from there, have something inserted in any empty cells within that range - fwiw, I use the word 'gap'. At the moment I loop through the range, but the fact there is almost certainly something better is nagging at me.

Any suggestions gratefully received!
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
As long as it is the same value in each blank cell (or formula) then:

Code:
myRange.SpecialCells(xlCellTypeBlanks).Value = "I am blank"
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,833
Members
452,947
Latest member
Gerry_F

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