reading a cell Flow Designer

sanjay_navada
Tera Contributor

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?

1 ACCEPTED SOLUTION

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.

 

flow-access-field-data.png

View solution in original post

7 REPLIES 7

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. 

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.

 

flow-access-field-data.png

Thanks OlaN.. This helped