Z
Zilla
Any VBA or vanilla excel formula to make the
above check if both A1 and B1 are validated
using the same drop-down list?
above check if both A1 and B1 are validated
using the same drop-down list?
Bernard Liengme said:A very quick way to give an alert, but not to prevent, would be to use
Conditional Formatting
best wishes
Lori said:How about selecting A1:B1 then:
Edit > Goto > Special > Data Validation > Same
and check if the selection remains the same. Or in code:
?
Selection.SpecialCells(xlCellTypeSameValidation).Count=Selection.Count
(executed in the immediate window)