Paul,
Your Code is working a Msg box comes up If one or both fields are open, but as soon as i click OK it advances to the next Sheet.
Sub NameIt()
Dim fileSaveName As String
Dim strOrigDate As String
Dim strFileDate As String
Dim strFileNum As String
Dim strFileLoc As String
Dim strFileName As String
strFileLoc = "C:\Users\Brian\Desktop\Excell Test folder\"
strOrigDate = CStr(Sheets("Log In Screen").Range("F2"))
strFileDate = Format(strOrigDate, ("m-d-yyyy"))
strFileNum = CStr(Sheets("Log In Screen").Range("D6"))
strFileName = CStr(Sheets("Log In Screen").Range("I6"))
If Len(strFileNum) = 0 Or Len(strFileName) = 0 Then
MsgBox "You haven't filled in MEDIC# and/or CREW Yet."
End If
fileSaveName = strFileLoc & strFileDate & "-" & strFileNum & "-" & strFileName & ".xlsm"
ActiveWorkbook.SaveAs Filename:=fileSaveName
End Sub
is it possible the macro that the Start Inventory is activating is the cause.
Private Sub CommandButton1_Click()
Call NameIt
Inventory_Home
End Sub
Thanks Aeneren
Bookmarks