this is what I currently have as the value to save for the variable “Value” that is saved as an object currently
I am still getting an issue where CurrentRow1 and CurrentRow2 say they have not been declared - I’m not sure why this is as they are established as Outputs on each For Each Row in Data Table activity
Have you changed the CurrentRow in first for each row in data table to CurrentRow1? and CurrentRow in second for each row in data table to CurrentRow2?
Regards
Yes I have - my current issue is that when I go to assign “value” as CurrentRow2(“Value”) I am getting the following error
Hi @R_Wolff
Please remove double quotes and reassign double quotes
Awesome that is now working - my only issue now is it is not looping through all rows from the Excel data table - it just keeps trying to input the first number found in the list
Use the below syntax in the if condition
CurrentRow1("Account Header").ToString.Trim.Equals(CurrentRow2("Account Header").ToString.Trim
Regards
sorry for the late reply please keep the closing bracket at the end.
CurrentRow1("Account Header").ToString.Trim.Equals(CurrentRow2("Account Header").ToString.Trim)
hope it helps!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.