kevzmm

New Member
Joined
Nov 3, 2017
Messages
15
Hi,

Im trying to add in some way of tracking debt of customers in a spreadsheet.

So far the formula say if a date is over 60 days then it will say Recourse =IFERROR(IF(O2>60,"RECOURSE"),0)

But i now need it to do the same thing track if an invoice is over 60 days but also if the customers debt is 50% over 60 days then all of the invoices are considered at recourse.

Sample data will look something like this;

ClientDate RefDetails Balance Current P1 P2 P3 OlderDue DatePayment TermsDays OverdueDebt Status

<tbody>
</tbody>
Customer 130/04/20171360946Description 1,000.00 1,000.0030-05-201730160 RECOURSE
Customer 124/05/20171361088Description 1,900.00 1,900.0023-06-201730136 RECOURSE
Customer 110/05/20171360988Description 1,200.00 1,200.0009-06-201730150 RECOURSE
Customer 109/08/2017 1361681Description 1,000.00 1,000.00 08-09-20173059FALSE

<colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col span="2"></colgroup><tbody>
</tbody>


So here where it say False it should say Recourse as more than 50% of the total value of the invoices (column E) is over 60 days for that customer.

FYI there are various customers and this is updated everyday and has many customers in the spreadsheet, so it may need a look up for the customers rather than selecting the particular customer in the formula.

Also column M is the amount of days over due.

Thanks
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
try this instead

=IFERROR(IF(OR(SUM(F2:J2)>0.5*E2,M2>60),"RECOURSE"),0)

this probably will work as well

IF(OR(SUM(F2:J2)>0.5*E2,M2>60),"RECOURSE",0)
 
Last edited:
Upvote 0
Hi thanks for the reply,

this didnt seem to work, could your explain the cells, so i can add it and test it properly.

Thanks,
 
Upvote 0
I've modified your formula to suit, cells might be different


Excel 2013/2016
AEFGHIJKLMNO
1ClientBalanceCurrentP1P2P3OlderDue DatePayment TermsDays OverdueDebt Status
2Customer 11,000.001,000.0030/05/201730160RECOURSERECOURSE
3Customer 11,900.001,900.0023/06/201730136RECOURSERECOURSE
4Customer 11,200.001,200.0009/06/201730150RECOURSERECOURSE
5Customer 11,000.001,000.0008/09/20173059RECOURSERECOURSE
6Customer 11,000.0049908/09/20173045FALSE0
7Customer 11,000.0050108/09/20173045RECOURSERECOURSE
Sheet4
Cell Formulas
RangeFormula
N2=IFERROR(IF(OR(SUM(F2:J2)>0.5*E2,M2>60),"RECOURSE"),0)
O2=IF(OR(SUM(F2:J2)>0.5*E2,M2>60),"RECOURSE",0)
 
Last edited:
Upvote 0
basically it test if the days overdue > 60 days, OR

the sum of Cols F to J is greater than half of balance (Col E)
 
Upvote 0
so it should say in this example that all of the invoices for this customer is in the recourse category as their balance in recourse is over 50%
 
Upvote 0
Hi,


Its meant to be half of the recourse balance not the total balance

could you give an example of the highlighted RED from one of the row what's required.

But i now need it to do the same thing track if an invoice is over 60 days but also if the customers debt is 50% over 60 days then all of the invoices are considered at recourse.
 
Upvote 0
so in this situation with data i given above the recourse balance is £4100 & the remaining non recourse is £3,000, which is less than 50% of the total balance (£6,100) so everything for the customer should be in recourse.

So here this customer should show everything in recourse.
 
Upvote 0
so it should say in this example that all of the invoices for this customer is in the recourse category as their balance in recourse is over 50%

still not clear, do you mean something like this


Excel 2013/2016
AEFGHIJKLMNO
1ClientBalanceCurrentP1P2P3OlderDue DatePayment TermsDays OverdueDebt Status
2Customer 11,000.001,000.0030/05/201730160RECOURSERECOURSE
3Customer 21,900.001,900.0023/06/201730136RECOURSERECOURSE
4Customer 31,200.001,200.0009/06/201730150RECOURSERECOURSE
5Customer 41,000.001,000.0008/09/20173059RECOURSERECOURSE
6Customer 5499.00100008/09/20173045FALSE0
7Customer 6501.00100008/09/20173045RECOURSERECOURSE
Sheet4
Cell Formulas
RangeFormula
N2=IFERROR(IF(OR(E2>0.5*SUM(F2:J2),M2>60),"RECOURSE"),0)
O2=IF(OR(E2>0.5*SUM(F2:J2),M2>60),"RECOURSE",0)
 
Upvote 0

Forum statistics

Threads
1,215,326
Messages
6,124,267
Members
449,149
Latest member
mwdbActuary

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