I have an input file Like this
I want to convert the third column i.e Partner Description column into proper case
Expected Output
Any Ideas On this ?
I have an input file Like this
I want to convert the third column i.e Partner Description column into proper case
Expected Output
Any Ideas On this ?
read excel as dt
loop each row, assign
CurrentRow("Partner Description") = strconv(CurrentRow("Partner Description").ToString, vbProperCase)
Hi,
I hope this will help you
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.