Loop Over a CSV
When you have a CSV file and want to do something for every row in it, such as adding each row as a contact or looking each one up, the pattern is always the same: parse the file into rows, then loop over those rows.
Nodes involved
How to build it
For Each has a “collect results” option. Leave it off for large files; a long list of gathered results can grow fast, and every pass is visible in the run history regardless.