Match data from 2 financial statements by amount and date

dreamed2fly

New Member
Joined
Mar 14, 2018
Messages
4
how to match data from 2 financial statements by amount and date ?


So i have a transaction at Date 1/1/18 with the amount of $4000 and in the other statement i have the same transaction amount and date, how to use a formula to run through the data and pick out not matching ones.
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Re: how to match data from 2 financial statements by amount and date

What are the relevant ranges?


So theres a column of dates which are aligned to the transaciton amount


and on the other statement there is a column of dates that are aligned to the transaction amount,


i would like to use a formula that can pick out the non matchings ones.
 
Upvote 0
Re: how to match data from 2 financial statements by amount and date

A2:A10 for example is something which is called a range in Excel.
 
Upvote 0
Re: how to match data from 2 financial statements by amount and date

The range is A2:H137 for statement 1

and for statement 2 the same but in another worksheet

A2:H137 is all dates? Where are the dates exactly, where are the amounts exactly, and what is the name of the another worksheet?
 
Upvote 0
Re: how to match data from 2 financial statements by amount and date

A2:H137 is all dates? Where are the dates exactly, where are the amounts exactly, and what is the name of the another worksheet?


Hi sorry the dates for statement 1 range A9:A156

amount range = E9:E156


Statement 2 dates = J9:J156
statement 2 amounts = n9:n156
 
Upvote 0
Re: how to match data from 2 financial statements by amount and date

Hi sorry the dates for statement 1 range A9:A156

amount range = E9:E156


Statement 2 dates = J9:J156
statement 2 amounts = n9:n156


In F9 enter and copy down:

=IF(ISNA(MATCH($A9,$J$9:$J$156,0)),"does not exist in statement 2",IF(VLOOKUP($A9,$J$9:$N$156,5,0)=$E9,"","amounts differ"))

In O9 enter and copy down:

=IF(ISNA(MATCH($J9,$A$9:$A$156,0)),"does not exist in statement 1",IF(VLOOKUP($J9,$A$9:$E$156,5,0)=$N9,"","amounts differ"))

Does this give you what you had in mind?
 
Upvote 0
Re: how to match data from 2 financial statements by amount and date

Hi! A couple years ago I created a bank reconciliation tool to help me close out our clients files each month. It is an excel based widget that requires Macros to be enabled. You would paste the statement information into one of the tabs and the other statement info into the other. Click the button to run the reconciliation and all that will be left will be the unmatched items on each side.
The reconciliation was accomplished by concatenating the transaction type, the amount, and a sequential number (in case you had multiple payments of the same amount on the same day). Then it basically does a filter and find to match up the like items.

I just added it to my company website to provide you a link to download if you wish.

https://parkway.business/wp-content/uploads/2018/03/Bank-Reconciliation-4.0-1000-lines.xlsm

Matthew Fulton
Parkway Business Solutions
https://parkway.business
 
Upvote 0

Forum statistics

Threads
1,215,945
Messages
6,127,851
Members
449,411
Latest member
adunn_23

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