Quantcast
Channel: Active questions tagged excel - Stack Overflow
Viewing all articles
Browse latest Browse all 88087

Calling every sub in a module in VBA in excel [duplicate]

$
0
0

Is there any way you can call every subroutine inside a module instead of having to reference them all individually?

The current code I am running to do this is structured as follows but as I continue to add more subroutines, this could become an inefficient way of writing the code.

Sub run()
Call LoadData
Call NormaliseData
Call ANN
Call Visualisation
End Sub

Any and all solutions are greatly appreciated.


Viewing all articles
Browse latest Browse all 88087

Trending Articles