Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am not very good with code, I am trying to Save a workbook, but prior to
saving I want it to check certain fields to ensure they are filled in. Below is the code I am using, but doesn't seem to work. Any Suggestions?? Linda Private Sub App_WorkbookBeforeSave(ByVal Wb As Workbook, _ ByVal SaveAsUI As Boolean, Cancel As Boolean) a = MsgBox("Do you really want to save the workbook?", vbYesNo) If a = vbYes Then SaveAsUI = True If TextBox8 = "" Then MsgBox "Please enter Submitting Agency Name" Exit Sub End If If TextBox1 = "" Then MsgBox "Please enter Accounting Unit Code (7 Digits)" Exit Sub End If If TextBox4 = "" Then MsgBox "Please enter Task Coordinator Name" Exit Sub End If If TextBox5 = "" Then MsgBox "Please enter Task Coordinator Telephone Number" Exit Sub End If If TextBox6 = "" Then MsgBox "Please enter Task Coordinator Email Address" Exit Sub End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Worksheet.Unprotect within WorkbookBeforeSave event fails if Save | Excel Programming | |||
how to have fields to be required | Excel Worksheet Functions | |||
Worksheet.Unprotect within WorkbookBeforeSave event fails if Save initiated by VB | Excel Programming | |||
Required fields | Excel Programming | |||
Required fields | Excel Discussion (Misc queries) |