Take the value of a cell and set in a mail subject for each value

Hello guys, I have an excel where I read values with read range activity and then i run for each row activity. Can you please tell me how can I take the value from each row every loop and set it in a mail subject? Thank you!

Hi @Ionut_Frincu

inside for each row use get row item activity in properties enter column name and create output variable and then mail subject you can pass output variable.

Regards,
Kommi Jeevan.

1 Like

Hi @Ionut_Frincu,

I’ll suggest you to use row(0).ToString in send mail message activity inside for each row activity. to get value 1 by 1 from 1st column (with index(0))
OR
row(“ColumnName”).ToString as given below

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.