Hello all
A member of the Excel forum kindly helped with this code and I want to expand it to saying.
Number of supplier email missing
Proceed Yes or No
if yes then action my code
if no then end function
A member of the Excel forum kindly helped with this code and I want to expand it to saying.
Number of supplier email missing
Proceed Yes or No
if yes then action my code
if no then end function
Code:
With Sheets("Data")
LastRow = .Range("B" & Rows.Count).End(xlUp).Row
Set rng = .Range("AA2:AA" & LastRow).SpecialCells(xlCellTypeBlanks)
End With
MsgBox "Number of Supplier Emails missing: " & rng.Count