Hide rows outside a known range of rows

  • Thread starter Thread starter XP
  • Start date Start date
X

XP

Using Office 2003 on Windows XP;

Suppose I have two variables containing a row number such as:

lRowLO = 558
lRowHI = 672

I want to programmatically hide all rows outside of those contained within
that range. The low and high delimiter row numbers should not be hidden.
Also, the ranges contained by the variables are dynamic. Anyone got some code
to do this quickly and cleanly?

Thanks much in advance for your assistance.
 
Something like:

Rows("1:557").Select
Selection.EntireRow.Hidden = True
Rows("673:999").Select
Selection.EntireRow.Hidden = True

Not sure if it will break if you don't have 999 rows though...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top