- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2024 06:47 AM
How can i read a specific Column data in flow designer?
For example there exists a table A. I want to iterate through column c in the table A and read the values in that specific column. How can this be achieved?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2024 01:28 AM
By dot-walking into that field you access/read that data.
Providing a simple example below, where i retrieve some incident records.
Loop through all records found, then log the number (field value) of each incident.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2024 07:46 AM
iterating through the record gives the entire row. I am trying to read a specific cell/column in the returned record. How do i achieve that? For example if there are 5 columns a,b,c,d,e i want to read the column c in the returned record.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2024 01:28 AM
By dot-walking into that field you access/read that data.
Providing a simple example below, where i retrieve some incident records.
Loop through all records found, then log the number (field value) of each incident.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2024 02:05 AM
Thanks OlaN.. This helped