Thanks Dion & Abousetta,
With some tweaking of Abousettas' code I've ended up with this and after testing it it works perfectly so now I've tacked it onto the end of the macro I mentioned in my original post & I'm glad to say it does exactly what I wanted it to do.
I changed your "200" to "x"
Range("G5").Select
If Range("G5") = "x" Then
Application.Run "Blank_Friday_Week_1"
Exit Sub
Else: End If
Range("F5").Select
If Range("F5") = "x" Then
Application.Run "Blank_Thursday_Week_1"
Exit Sub
Else: End If
Range("E5").Select
If Range("E5") = "x" Then
Application.Run "Blank_Wed_Week_1"
Exit Sub
Else: End If
Range("D5").Select
If Range("D5") = "x" Then
Application.Run "Blank_Tuesday_Week_1"
Exit Sub
Else: End If
Range("C5").Select
If Range("C5") = "x" Then
Application.Run "Blank_Monday_Week_1"
Exit Sub
Else: End If
Range("D12").Select
End Sub
Dion, I took your advice and removed all other Cell References, I only had them in there to get the active cell away from the calendar at the end of the routine.
Thank you both for your great help on this one.
I'll mark it as SOLVED and give both of you positive ratings.
Thanks Again
John
Bookmarks