Hello Team,
I want to convert datatable values to uppercase,Please guide
try one of the below: you will need to convert the value to string first
Str = stringValue.toUpper()
StrConv(“Value”,VbStrConv.Uppercase)
Hi @Mayyur,
**
row(1) = row(1).ToString.ToUpper
**
Other example:
**
row(“ColumnName”) = row(“ColumnName”).ToString.ToUpper
**
More info and official documentation from microsoft can be found here: