Check multiple values between multiple excel Files

rakaisa

New Member
Joined
Apr 9, 2015
Messages
1
Hi,
I have somes files such as bank.xls, office1.xls,office2.xls each having a particular sheet with the following columns
Date
Payment mode
Payee
Amount
I need to check if the data from the sheet1of bank.xls has been correctly entered into sheet2 of office1.xls / sheet2 of office2.xls


eg:
31.03.2015 , RTGS, office1,50000
31.03.2015, NEFT, office1,6000
31.03.2015, RTGS,office2,50000
01.04.2015 , , office2,8979


I need to check if the first two rows have been entered into sheet2 of office1.xls
and last two rows have been entered into sheet2 of office2.xls
if data is not available i need to get a comment as to where the error is


I have data from 2008 so it is a very big file
please help
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
how about using
Code:
and(sheet1of bank'A1=sheet2 of office1'A1,sheet1of bank'b1=sheet2 of office1'b1,sheet1of bank'c1=sheet2 of office1'c1,sheet1of bank'd1=sheet2 of office1'd1)
?
 
Upvote 0

Forum statistics

Threads
1,214,858
Messages
6,121,956
Members
449,057
Latest member
FreeCricketId

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top