Yesterdays answer perhaps? 3887.html
Re: Yesterdays answer perhaps? 3887.html
My bad...I didn't know that was an answer. I didn't know the questions were numbered.
Ok...so I tried the macro and it didn't work. I am not good with macros but I typed it in exactly as you have it.
Joe,
Here are a couple ideas:
(1) What should really work is if you run a macro with the following line of code as the last line:
ActiveSheet.UsedRange
Or a macro like
Sub Reset()
ActiveSheet.UsedRange
End Sub
(2) Is there maybe a cell way down there that really does contain data or formatting? Sometimes by mistake that can happen so take a close look. If you are absolutely certain that no such cell should exist, then Edit > Clear > All for the rows below your last used one, and try running the above macro again.
If you still have trouble then re-post and someone else may know of something to try.
HTH
Tom Urtis
Joe,
Here are a couple ideas:
(1) What should really work is if you run a macro with the following line of code as the last line:
ActiveSheet.UsedRange
Or a macro like
Sub Reset()
ActiveSheet.UsedRange
End Sub
(2) Is there maybe a cell way down there that really does contain data or formatting? Sometimes by mistake that can happen so take a close look. If you are absolutely certain that no such cell should exist, then Edit > Clear > All for the rows below your last used one, and try running the above macro again.
If you still have trouble then re-post and someone else may know of something to try.
HTH
Tom Urtis
Re: A couple possibilities