Excel 2003 Tally an IOU column for customers

adulted

Active Member
Joined
Jan 22, 2004
Messages
339
Hello all,

I am trying to get a no result or the money owed for purchase in column K, The formula I am using returns False if Paid.

Row 8 shows in Column K 12.00 owing as the purchase or Cash was not submitted in Column G, was not paid.

Thank you in advanced.
Paul


Excel 2003
ABCDEFGHIJK
5CustNoBrandNoDateNameBrandDrinksCashTotalChangeCostIOU
611Mon Sep 12, 2016DotComCoors Light3$ 20.009.00$ 14.00$ 3.00FALSE
752Mon Sep 12, 2016Jim RLaker Lager2$ 15.006.00$ 10.00$ 3.00FALSE
821Mon Sep 12, 2016WayneCoors Light412.00 $ 3.00$ 12.00
Sheet1
Cell Formulas
RangeFormula
C6=IF(A6="","",TODAY())
C7=IF(A7="","",TODAY())
C8=IF(A8="","",TODAY())
D6=IF(A6="","",VLOOKUP(A6,Customer,2))
D7=IF(A7="","",VLOOKUP(A7,Customer,2))
D8=IF(A8="","",VLOOKUP(A8,Customer,2))
E6=IF(B6="","",VLOOKUP(B6,Brand,2))
E7=IF(B7="","",VLOOKUP(B7,Brand,2))
E8=IF(B8="","",VLOOKUP(B8,Brand,2))
H6=IF(F6="","",F6*J6)
H7=IF(F7="","",F7*J7)
H8=IF(F8="","",F8*J8)
I6=IF(G6="","",G6-F6-J6)
I7=IF(G7="","",G7-F7-J7)
I8=IF(G8="","",G8-F8-J8)
J6=IF(B6="","",VLOOKUP(B6,$M$6:$R$9,6))
J7=IF(B7="","",VLOOKUP(B7,$M$6:$R$9,6))
J8=IF(B8="","",VLOOKUP(B8,$M$6:$R$9,6))
K6=IF(G6="",F6*J6)
K7=IF(G7="",F7*J7)
K8=IF(G8="",F8*J8)
Named Ranges
NameRefers ToCells
Brand=Sheet1!$M$6:$R$9
Customer=Sheet1!$M$15:$N$34
 
Last edited:

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
You didn't finish the IF statement
=IF(G6="",F6*J6,0)

But what if they don't pay all their bill. How about
=max(F6*J6-G6,0)
This way it will calculate zero if the bill is payed or any amount from the total bill to the total bill less a partial payment.

Jeff

 
Upvote 0

Forum statistics

Threads
1,223,950
Messages
6,175,582
Members
452,653
Latest member
craigje92

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