A simple question that google yields no assistance on.
I have a formula that hides rows within a range for a sheet.
Sub HideRows(RStart As Range, REnd As Range) Range(RStart, REnd).Select 'Code to Hide Rows, does not matter ... End Sub
I am clearly doing something wrong because I am having troubling calling the function.
For instance Call HideRows("A1", "A20) does not work
Also, changing the HideRows formula to have one parameter does not work for me
Any guidance would be appreciated as I am not sure how to use parametersSub HideRows(RStart As Range) Range(RStart).Select 'Code to Hide Rows, does not matter ... End Sub Call HideRows("A1:A20")
Last edited by Hot Soup; 08-06-2009 at 02:10 PM.
Hello HotSoup,
If you post your workbook for review, I'll find the problem for you. It will be faster than posting back and forth.
Sincerely,
Leith Ross
Remember To Do the Following....
1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.2. Thank those who have helped you by clicking the Starbelow the post.
3. Please mark your post [SOLVED] if it has been answered satisfactorily.
Old Scottish Proverb...
Luathaid gu deanamh maille! (Rushing causes delays!)
You are not passing a range when you call it, you are passing an address:
Call HideRows(Range("A1:A20"))
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks