Csv import with 2 columns, wrong value

hi all,

short question. I import a csv file with 2 columns.

Example:
1234567 1234567
2234567 2234567

"Command": "type",
  "Target": "id=searchCustomer:searchText",
  "Value": "${!COL1}"

with that command he shows me the following: “1234567;1234567”
it should be: “1234567”
Did i do something wrong with the conversion of the csv file?

Does the CSV file have commas? It should be like this:

Example:
1234567, 1234567
2234567, 2234567

excel didnt serperate with commas. works now. thanks :+1: