28-10-22 08:15 AM
Answered! Go to Answer.
16-11-22 02:20 PM
Collection_Out = Collection_In.Copy
For Each c As DataColumn in Collection_Out.Columns
c.ColumnName = Trim(c.ColumnName).ToUpper
Exit For
Next
28-10-22 09:07 AM
15-11-22 05:18 PM
Hi Vinod,
As Carl says, this is the easiest option, you can use the following functions in a calculation stage within a loop to do this such as
Trim(Lower([collection.Name]))
or
Trim(Upper([collection.Name]))
16-11-22 10:03 AM
16-11-22 02:20 PM
Collection_Out = Collection_In.Copy
For Each c As DataColumn in Collection_Out.Columns
c.ColumnName = Trim(c.ColumnName).ToUpper
Exit For
Next
16-11-22 02:47 PM
16-11-22 03:20 PM