Forum Discussion

shankar_r's avatar
shankar_r
Community Hero
8 years ago
Solved

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...
  • tristaanogre's avatar
    tristaanogre
    8 years ago

    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.