So I am reading an excel sheet and for each Row if the column has “Active” I am performing a task to send an email.
I have another requirement that, if an email for that particular row item was sent within 3 hours, it should not be sent again
As a solution for this, I was thinking to capture the time post the send email activity in the last cell of the row. Post which I will compare with the current time and if it greater than 3 hours, only then send the email.
Now I am not sure how do I capture the activity time into the column cell of the current row. I also need to make sure that the captured time should not keep changing/remain unchanged once captured unlike the ‘Now()’ in excel which keeps updating
Hey, thanks for the response @prateek.mehandiratta9 , so I used “Get Row Item Activity” to assign that cell to a variable ‘Senttime’. Do you want me to use Assign activity post sent outlook email and under Save to use ‘Senttime’ and under Value to use enter ‘System.DateTime.Now.ToString (“hh-mm-ss”)’ ?