Select Item - case insensitive

Hi,
Your not suppose to make ignore case because select item is case sensitive.
So better way is to make first letter of string is capital.(as per the drop down value)
assign str= strvalue.Substring(0, 1).ToUpper() + strvalue.Substring(1).ToLower

2 Likes