Hello.... I'm not sure how to word this exactly, but I'm trying to find out how to call and run a sub procedure from within the main sub of the macro being run.
Below is a very simplistic version of what I want to achieve, but the 'Call' line doesn't do anything, and I'm not sure what I need to do. Can anyone help me? I assume it may be a very basic thing to do, so I hope you'll forgive my ignorance.
Sub Main()
Call InputSecurities()
End Sub
Sub InputSecurities()
End Sub
Below is a very simplistic version of what I want to achieve, but the 'Call' line doesn't do anything, and I'm not sure what I need to do. Can anyone help me? I assume it may be a very basic thing to do, so I hope you'll forgive my ignorance.
Sub Main()
Call InputSecurities()
End Sub
Sub InputSecurities()
End Sub