View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
N10 N10 is offline
external usenet poster
 
Posts: 141
Default Calling a procedure in a procedure


"Alex" wrote in message
...


"N10" wrote:


I new to programming so I may be off the mark here

should the code nor read


If Finish = vbYes Then
call Summary
Exit Sub
Else
MsgBox "Let me know if this macro has helped you."
End If

Hope this helps

Best N10


If' tried using CALL as well but get the same error. VBA knows that with

or
without the CALL statement, I want to run the additional procedure.



Could Summary be an allocated term in VBA ?

Like coding call OPEN would cause an error

Also does the routine Summary when ran directly ?