I have created a flow which will read two excel and compare them and if in first excel it doesn’t find anything then it will save the data in a another excel. I am able to run it for what is available but I need to run it for whats not present in file 1st and present in 2nd file. But not able to run the same.
COuld you please help. I have uploaded the xmal file and the excels.
1.using Read cell activity read the first sheet cell(A1) and store int into some fields (str_first)
2.using Read cell activity read the second sheet cell(A1) and store int into some fields (str_second) if str_First is not empty
Read the first sheet store it into Datatable (dt_Firat)
if str_Second is not empty
Read the first sheet store it into Datatable (dt_Second)
I was able to create the workflow adding a boolean variable in between and keep changing its value when a match is found and update the excel with write cell and keep a index to go to next cell when new value is found.