I have a cell with a validation list that changes depending on other settings. Is it possible to iterate through that cell in code?
Is it also possible to set that cell to
Sub loopthroughvalidationlist()
Dim inputRange As Range
Dim c As Range
Set inputRange = Evaluate(Range("D2").Validation.Formula1)
For Each c In inputRange
'... do something with c.Value
Next c
End Sub