Hi,
I have 2 different macros and I want to call a specific line in the second macro from the first. Is this possible? Is there way to perform a GOTO inside a Call?
Thanks,
Mike
I have 2 different macros and I want to call a specific line in the second macro from the first. Is this possible? Is there way to perform a GOTO inside a Call?
Code:
Sub reset_control_panel_defaults()
Call default_veneer_file_name (reset_file_name) 'I want it to GOTO line reset_file_name inside the default_veneer_file name macro
End Sub
Sub default_veneer_file
'Some Code
reset_file_name:
'Some more Code
End Sub
Thanks,
Mike