Rate.xaml (16.4 KB)Excel1.xlsx (8.1 KB)
Excel2.xlsx (8.0 KB)
This is best example for two excel sheets comparison and update the one excel based on other excel. Hope this can be useful for others
Rate.xaml (16.4 KB)Excel1.xlsx (8.1 KB)
Excel2.xlsx (8.0 KB)
This is best example for two excel sheets comparison and update the one excel based on other excel. Hope this can be useful for others
Hello,
For these kind for informative threads can be tagged in how-to section, please tag how-to, excel to this thread.
Thanks,
Meg
Hi @UI_Path1 and @megharajky
could you inform me, what it is using for?
because I try to run program, and nothing happen in excel1 and excel2
thank you
Hello @zonda_rugmiaga ,
@UI_Path1 was tring to compare the two sheets, first he was reading both sheets and for each row of sheet1 he was comparing with sheet2 either any matching row exist or not, if matching writing new value to sheet.
I guess as per topic title you were looking for sheet comparer.
Please refer the below flow.
input.xlsx (9.1 KB) SheetCompare.xaml (7.0 KB)
Thanks,
Meg
Basicly my problem is I have two excel, first excel is master user and second excel is download data.
I need to compare both files use key name,department and title.
if data from download data cannot find in master user, it will insert new row in master user.
status will be active and insert current date.
if data from master user cannot find in download data, it will changing status in master user become inactive and insert current date.
for excel file and xaml file is attached.
hopefully, you could help me to fix this problem
[quote=“megharajky, post:4, topic:97514, full:true”]
Hello @zonda_rugmiaga ,
@UI_Path1 was tring to compare the two sheets, first he was reading both sheets and for each row of sheet1 he was comparing with sheet2 either any matching row exist or not, if matching writing new value to sheet.
I guess as per topic title you were looking for sheet comparer.
Please refer the below flow.
input.xlsx (9.1 KB) SheetCompare.xaml (7.0 KB)
Thanks,
Meg
[/quote]DownloadData.xlsx (15.0 KB) MasterRPAUserBeforeUpdate.xlsx (13.4 KB) MasterRPAUserAfterUpdate.xlsx (14.6 KB) Main.xaml (18.8 KB)
Hello,
What I suggest is split the task into 2 parts,
1st compare the downloaded data with master data and insert the entries,
2nd compare master data to downloaded data for status update.
for comparing 2 sheets take the datatables with same headers(name,dept,title)
based on that we get the entries which are in downloaded but not in master data, now using that list write the data to master file.
here too compare the datatables with same headders, and based on result update the status in master file. if you able to achive first one second onw will be similar
Thanks,
Meg
Hi @megharajky and other UIPATH master
I try use your program,
it is work,
but it will compare all column in every sheet.
if I have two sheets.
sheet 1 contain of 10 columns,
and sheet 2 contain of 5 columns.
if i only want to compare column 1, 2 and 3 only from each sheet.
how i can do it?
please kindly to help me.
Hello,
To get the specific columns to compare the datatable you can use Defaultview method
[datatablename].DefaultView.ToTable(True,“col1”,“col2”,“col3”)
once you read range from both the sheets take the columns which you want and use the linq query to compare.
Thanks
Meg
thank you @megharajky.
and currently i face problem to prevent error when both files does not have any gap.
could you help me again?
I didn’t get you, can you explain whats the issue in brief please.
I compare download data with master user.
if download data have new data, it will insert to master user.
if download data and master user has same data, it should only send messsage “no new data”.
but currently if download data and master user has same data, it is error.
Hello,
It is showing error because the datatable which you are storing the result is not initiated.
To initiate you can use two methods
new system.data.datatable
both are demonstrated here use any one:
Thanks,
Meg
Thank you for your help @megharajky
i finish for this case.
I use this way:
After comparing two datatables,
I use this:
dt1.AsEnumerable.Except(dtCommon.AsEnumerable,DataRowComparer.Default).Count
If count>0
I will continue compare
else end task.
Hello @zonda_rugmiaga, do you have the updated workflow of you case? Mind if you can share?
I have the same scenario now. I want to study how the workflow.
Thank you
please use this to compare download data with master user.
if download data have new data, it will insert to master user.
if download data and master user has same data, it should only send messsage “no new data”.
CompareData.xaml (12.3 KB) Master User.xlsx (15.6 KB) DownloadData.xlsx (15.0 KB)
if you have any problem, let me know
i am not able to open the .xaml file
Awesome!!
@sharathraju489
Please find attached file for comparing Two Excels.
Compare_Excel.zip (28.6 KB)
Please tell me, I’m a newbie in this business. If I need to find common elements between two Excel data tables (two files), and not between the created tables by the “Build DataTable” action. What operations need to be performed?