I want the if condition that should match with any of of the excel column value, so that i can proceed with some steps. Please help me on this
I want the if condition that should match with any of of the excel column value, so that i can proceed with some steps. Please help me on this
Can you please specify the condition that you want to check? Also, in the If condition, you can directly use CurrentRow(0) = yourCondition
format to check the desired condition.
Best Regards.
Could you specify what condition you wanted to check? You can give that condition in the if activity directlly as CurrentRow(0)= Condition and proceed with the rest of the logic in the if block.
Get row item will give you a single value. But you are trying to access opDT(0) which is not correct. Can you try opDT.ToString.Equals(ID)
Thank you so much it worked
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.