I was trying to find an Excel VBA code that reads validation list into a variable.
I\'m using Excel 2010 version.
In the code below I\'m dynamically setting
Assuming it's a list type (validation type 3), then Debug.Print Range(yourRange).Validation.Formula1 should print out a list. So Object.Validation.Formula1 would appear to work for you. See here for more info.
Debug.Print Range(yourRange).Validation.Formula1
Object.Validation.Formula1