
Originally Posted by
VBA Noob
Maybe
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Dim Rng As Range
Set Rng = Sheets("Sheet1").Range("M5:M500") 'change to your sheet name If WorksheetFunction.CountIf(Rng, "Incomplete") > 0 Or _
WorksheetFunction.CountBlank(Rng) <> 0 Then
Cancel = True
msg = MsgBox("Please complete record to continue ", vbOKOnly)
Else
If WorksheetFunction.CountIf(Rng, "Incomplete") = 0 And _
WorksheetFunction.CountBlank(Rng) <> 0 Then
Cancel = False
End If
End If
End Sub
VBA Noob
Sorry think i may have not explained that as well as i could.
when i say "blank" above the cell shows the word blank due to the following IF statement.
=IF(L9=0,"Blank",IF(L9=9,"Complete", "Incomplete"))
tried changing the code to
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Dim Rng As Range
Set Rng = Sheets("ASC").Range("M5:M500") 'change to your sheet name
If WorksheetFunction.CountIf(Rng, "Incomplete") > 0 Then
Cancel = True
msg = MsgBox("Please complete record to continue ", vbOKOnly)
Else
If WorksheetFunction.CountIf(Rng, "Incomplete") = 0 Then
Cancel = False
End If
End If
End Sub
But sadly a little knowledge is dangerous and it didnt work!
Is the problem the fact the M cells are the product of an IF statement?
Bookmarks