View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Charles Maxson Charles Maxson is offline
external usenet poster
 
Posts: 24
Default Macro within a Macro help

Why don't get rid of the exits altogether and try a Select Case
statement.....

Sub Avail1()

Select Case WFM.Week1.Value
Case "Sunday"
avail1a
Case "Monday"
avail1b
Case "Tuesday"
avail1c
Case "Wednesday"
avail1d
Case "Thursday"
avail1e
Case "Friday"
avail1f
Case "Saturday"
avail1g
End Select

End Sub


--
Charles
www.officezealot.com
"dok112" wrote in message
...

Hello,

I am creating a macro, that I am running into an error that I can't
figure out how to get around. The macro is basically determining which
macro needs to be run on a form. Once it runs the necessary macro, it
is jumping onto the next, and then returning an error b/c it is not
supposed to be run. Here is my macro

Sub masteravail()
If WFM.Main1.Value = Sheets("WFM_Update").Range("N8") Then
Avail1
Exit Sub
End If
If WFM.Main1.Value = Sheets("WFM_Update").Range("N9") Then
Avail2
Exit Sub
End If
If WFM.Main1.Value = Sheets("WFM_Update").Range("N10") Then
Avail3
Exit Sub
End If
End Sub
-------------------------------------------------------------------------------
Sub Avail1()
If WFM.Week1.Value = "Sunday" Then
avail1a
Exit Sub
End If
If WFM.Week1.Value = "Monday" Then
avail1b
Exit Sub
End If
If WFM.Week1.Value = "Tuesday" Then
avail1c
Exit Sub
End If
If WFM.Week1.Value = "Wednesday" Then
avail1d
Exit Sub
End If
If WFM.Week1.Value = "Thursday" Then
avail1e
Exit Sub
End If
If WFM.Week1.Value = "Friday" Then
avail1f
Exit Sub
End If
If WFM.Week1.Value = "Saturday" Then
avail1g
Exit Sub
End If
End Sub


When it runs the macro "avail1a", it then attempts to run macro
"avail1b" even tho the exit sub command is there. How can I get around
this?


--
dok112
------------------------------------------------------------------------
dok112's Profile:
http://www.excelforum.com/member.php...o&userid=10581
View this thread: http://www.excelforum.com/showthread...hreadid=263715