shankar_r
9 years agoCommunity Hero
DDT driver not reading Excel cell values with Carriage Return character?
DDT driver not reading Excel cell values with Carriage Return character.
Or is there any way to get the cell values with the Carriage Return character.
If i get any quick answer that would be great help.
I was right... in the Excel cell, what is separating the lines is not a CR but an LF only... so, in other words, your code should be
aqString.ListSeparator = "\n" aqString.GetListItem(mycellvalue,0);
This worked for me... see if it works for you.