How to sequentially output csv values #2498
Answered
by
bruno-f-cruz
adam-hockley
asked this question in
Q&A
-
|
How do I read numerical values from a csv sequentially? |
Beta Was this translation helpful? Give feedback.
Answered by
bruno-f-cruz
Jan 8, 2026
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
adam-hockley
-
|
Thanks, yes that's working with the CSV file arranged in columns.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Seems to be working on my PC. Your CSV has a single row. The workflow reads that row, pairs it up with the first tick of the timer (delays 500ms) and finishes the workflow.
If you want to read one number at a time, the proper way is to use rows in a CSV file not columns.
Alternatively, you can do:
where the
CsvReaderhas "," as a ListSeparator parameter.