Hey all, New here and hoping someone here has had a similar problem, I cannot find any mention of this anywhere else and when google fails me I get nervous.
I've put together a series of macros that complete a particularly undesirable task (previously my bosses task) relatively quickly. Unfortunately he learned about this and now I have to make this process user friendly. Well, I figured what could be more friendly than a button? So I created another macro that would call the others one by one (not an unheard of practice from what I can gather. It goes a little like...
The Problem is that the stack fails after calling Rename Sheets, without so much as an error message to cling to. The odd part is if I comment out Rename Sheets and the first sheet select it will go all the way to number. In fact commenting out any of the items causes it to go one macro further. (it stands mentioning that RenameSheets has an internal call command to another macro I entitled IdiotTrap as a sort of shot at myself. I don't think it has any stake in this problem but its probably worth saying)
I'm fairly new to the whole macro world so there might be an answer so obvious no-one's actually committed it to print. Any help at all would be appreciated.
Thanks,
Pleepleus
I've put together a series of macros that complete a particularly undesirable task (previously my bosses task) relatively quickly. Unfortunately he learned about this and now I have to make this process user friendly. Well, I figured what could be more friendly than a button? So I created another macro that would call the others one by one (not an unheard of practice from what I can gather. It goes a little like...
Code:
Sub CoupDeGras2()
Call CleanSheets
Call RenameSheets
Call Sort
Sheets("1").Select
Call NUMBER
Call Report
End Sub
I'm fairly new to the whole macro world so there might be an answer so obvious no-one's actually committed it to print. Any help at all would be appreciated.
Thanks,
Pleepleus