Is there an elegant way to write an if A OR B OR C then X else do nothing statement? E.g.
If WorksheetFunction.CountA(Range("J:J")) <> SymbolCount Then
MsgBox "Check column J in Estate worksheet for fill completion"
End If
If WorksheetFunction.CountA(Range("K:K")) <> SymbolCount Then
MsgBox "Check column K in Estate worksheet for fill completion"
End If
The most creative solution I could think of is to add the CountAs and see if it matches SymbolCount * NumberOfTests, but that would mean giving a non-specific response message.
Here is a try (if I understood well your question):