Hello All,
I am wanting to perform a simple macro, in my mind, of confirming if a set range of cells all = 0. My current macro is giving me errors. It is the following:
Please assist with this complication I am having with my little macro knowledge. I cannot find anything on Google.
I am wanting to perform a simple macro, in my mind, of confirming if a set range of cells all = 0. My current macro is giving me errors. It is the following:
Code:
Sub ValidateCheckData()
Dim ValidationRange As Range
Set ValidationRange = Range("H23:I27")
If ValidationRange.Value <> 0 Then
MsgBox "Your data does not balance. Please review 'Input Project Data' tab."
Else
MsgBox "Your Form IIIa and Upload Template align. Please proceeed"
End If
End Sub
Please assist with this complication I am having with my little macro knowledge. I cannot find anything on Google.