I am working on dynamic creation of dropdown using VB.Net and SpreadsheetGear dll and populate it with values as below
worksheet.Range(Range).Validation.Add(ValidationType.List, ValidationAlertStyle.Stop,
ValidationOperator.Between, flatList, "")
I am using validation.add to create the dropdown
here flatList is the comma seperated string dropdown values.
It is working FINE with flatlist characters less than 255 characters, but if it is more than 255 it throws below ERROR message
**Data Validation lists are limited to 255 characters.**
Kindly Help Ramesh.T.