Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Dim Teste As Boolean, C As Range
With Sheets("Tabelle1")
For Each C In .Range("A1", .Cells(.Rows.Count, 1).End(xlUp))
If Application.CountA(C.Resize(, 12)) < 12 Then
Teste = True
Exit For
End If
Next C
If Teste = True Then Cancel = True
End With
End Sub