Hello All,
I Have a data validation VBA code but want the cells to be validated even if the cells to be validated are pasted values. .
So the user can enter the value and even paste it
With Range("l22:L1000").Validation
.Delete
.Add Type:=xlValidateCustom, AlertStyle:=xlValidAlertWarning, Operator:= _
xlNotBetween, Formula1:="Range(j12),AND(Range(j11))"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = "Error"
.InputMessage = ""
.ErrorMessage = "See Threshold for Materiality"
.ShowInput = False
.ShowError = True
End With
I Have a data validation VBA code but want the cells to be validated even if the cells to be validated are pasted values. .
So the user can enter the value and even paste it
With Range("l22:L1000").Validation
.Delete
.Add Type:=xlValidateCustom, AlertStyle:=xlValidAlertWarning, Operator:= _
xlNotBetween, Formula1:="Range(j12),AND(Range(j11))"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = "Error"
.InputMessage = ""
.ErrorMessage = "See Threshold for Materiality"
.ShowInput = False
.ShowError = True
End With