Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to create a user form based on Workbook_BeforeClose statement. If the
If statement below finds a "No" in the cell x2 it will open a "Report Does Not Reconcile" user form with two options based on closing the workbook. The "Yes" button will allow the user to go straight to a SaveAs option that will use the filename from cell a2. The "No" button will prevent closing the workbook and go to cell V105 (which I want to give a Name Range of "OutcomeTotal") to allow the numbers to be adjusted and reconciled. Currently I am using the following routine which prevents the workbook closing if it doesn't reconcile. Sometimes the user needs to be able to close without reconciling. Private Sub Workbook_BeforeClose(Cancel As Boolean) If Worksheets("DIOU Stats").Range("x2").Value = "no" Then Application.Goto Worksheets("DIOU Stats").Range("u105") Cancel = True End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula (off form) that completes form data based on a result | Excel Worksheet Functions | |||
Close form automatically upon opening workbook | Excel Discussion (Misc queries) | |||
Close form... | Excel Programming | |||
close .chm with form | Excel Programming | |||
Close Form with VBA | Excel Programming |