I am using the code from the answer of this question: how to add a drop down list in excel using vbs
to create a dropdown list in excel.
I am using an array instead of a range to fill the list.
.Add 3, 1, 1 "" & cStr(array(1)) & "" & cStr(array(2)) & "" etc
But there is a limitation.
"If you type the items into the data validation dialog box (a delimited list), the limit is 256 characters, including the separators." - google
Is there a way to bypass this limitations or an alternative to have more items in my dropdown list?