Seeking method to sequentially fill numbers in visible cells only

auto.pilot

Well-known Member
Joined
Sep 27, 2007
Messages
734
Office Version
  1. 365
Platform
  1. Windows
I have the following code which simply fills the range starting in cell A5 (down) to the end of the populated cells in column B. It works, but I'd like to instead fill only the visible cells. For example, if rows 10 & 11 are hidden or filtered, I'd like to return nothing. Then, I need to continue the sequential numbers in row 12.

How can I do this?

Code:
Sub Sequential()
Dim Lst As Long

Lst = Range("B" & Rows.Count).End(xlUp).Row - 4


With Range("A5")
    .Value = "1"
    .AutoFill Destination:=Range("A5").Resize(Lst), Type:=xlFillSeries
End With

End Sub
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Give this macro a try...
Code:
[table="width: 500"]
[tr]
	[td]Sub SequentialNumbersSkipHiddenRows()
  Dim Num As Long, Cell As Range
  Application.ScreenUpdating = False
  For Each Cell In Range("A5", Cells(Rows.Count, "B").End(xlUp).Offset(, -1)).SpecialCells(xlVisible)
    Num = Num + 1
    Cell.Value = Num
  Next
  Application.ScreenUpdating = True
End Sub
[/td]
[/tr]
[/table]
 
Last edited:
Upvote 0
Give this macro a try...
Code:
[table="width: 500"]
[tr]
	[td]Sub SequentialNumbersSkipHiddenRows()
  Dim Num As Long, Cell As Range
  Application.ScreenUpdating = False
  For Each Cell In Range("A5", Cells(Rows.Count, "B").End(xlUp).Offset(, -1)).SpecialCells(xlVisible)
    Num = Num + 1
    Cell.Value = Num
  Next
  Application.ScreenUpdating = True
End Sub
[/td]
[/tr]
[/table]


Excellent!

Thanks for your prompt reply.

jim
 
Upvote 0

Forum statistics

Threads
1,215,692
Messages
6,126,235
Members
449,303
Latest member
grantrob

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