I want to write a saved csv file in one column

I want to write the data in the csv file in one column in the text writing area
But if I save the csv file in UI.Vision and run the macro I created, It’s written like this

1234, 1234, 1234, 1234, …

I can’t try to divide it into paragraphs by typing enter key in SendKeys command.

Can you tell me how to type enter key in SendKeys command?
Or do you know how to write the data stored in the csv file as one column in the text area as shown below?

1234
1234
1234
1234

Thank you.

To save every value scraped in a line you must use !csvLine and csvSave for every value scraped

Here an example

storeText | id=USD | !csvLine
csvSave | exchangerate.csv

storeText | id=EURO | !csvLine
csvSave | exchangerate.csv

storeText | id=GOLD | !csvLine
csvSave | exchangerate.csv

Every line !csvLine you must save with csvSave

Here info about these commands

https://ui.vision/rpa/docs/selenium-ide/csvsave