H Hank Moore Member Nov 20, 2015 #1 Is there a way to do so? I would want the user to get an alert that "cell AA123 cannot be left blank".
Is there a way to do so? I would want the user to get an alert that "cell AA123 cannot be left blank".
Deepak Excel Ninja Nov 20, 2015 #2 Loop here! http://forum.chandoo.org/threads/prompt-to-enter-missing-values-before-worbook-save.26523 or Code: Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If Len([AA123]) = 0 Then Cancel = True MsgBox "cell AA123 cannot be left blank" End If End Sub
Loop here! http://forum.chandoo.org/threads/prompt-to-enter-missing-values-before-worbook-save.26523 or Code: Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If Len([AA123]) = 0 Then Cancel = True MsgBox "cell AA123 cannot be left blank" End If End Sub