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.