Matching cells to give a result for invoices paid or not paid

George1

New Member
Joined
Jun 26, 2009
Messages
13
Hi there,
I have two lists on one spreadsheet with the invoice number being common to both lists.
The list on the left is from a supplier and the one on the right is my list.
The list is about 2,000 lines and what the supplier wants to find out is if I have received their invoice and is it paid or not.

I have carried out a match between both lists and I have clarified what invoices I've received. What I want to know is - is there a formula that will tell me of what invoices I've received, what is paid and what is outstanding when compared to the suppliers list.

https://drive.google.com/file/d/12pqQ-rt186SPc5Kyajm47xS3YadWf3Y0/view?usp=sharing

Any help would be appreciated.

Regards
George
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Are you trying to fill in the E column with the amount paid as indicated in M, but if the invoice has NOT been paid (as indicated in M), then E is blank? If so, try:

Code:
=IF(VLOOKUP(B2,$K$2:$M$8,3,FALSE)="Yes",VLOOKUP(B2,$K$2:$M$8,2,FALSE),"")

In E2, filled down.
 
Upvote 0

Forum statistics

Threads
1,214,952
Messages
6,122,454
Members
449,083
Latest member
Ava19

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