Julian has attended:
Excel VBA Intro Intermediate course
Excel Advanced course
Excel VBA
How do you create a sub-procedure?
RE: Excel VBA
Hi Julian
To create a Sub Procedure in VBA:
1. Open the Visual Basic Editor
2. In the code window type the words
Sub Test where Test is the procedure name
The system immediately creates a procedure as seen below
Sub Test()
End Sub
Hope this helps
Carlos