Convert datatable headers to UpperCase?

Hello!

How can i transform all the Headers of a Datatable to UpperCase?

Thank you!


item.ColumnName = item.ColumnName.toUpper

Find starter help here:
ColumnName_ChangeToUpperCase.xaml (7.2 KB)

1 Like

Hey,

You can make a variable of Array
and store this value
From name in DataTable Variable.Cast(of DataColumn) Select name.ColumnName).ToArray()

and use for each Activity

and iterate one by one and keep
.toUpper

You can try like that

THanks
Rounak

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.