Moving Dates in quarters

kevzmm

New Member
Joined
Nov 3, 2017
Messages
15
hi,

Just need a bit of help with some data for over due invoices.

for example the data will look like

Date Balance Current P1 P2 P3 P4 OlderDue DatePayment TermsDays Overdue
19/09/2017 2,160.00 2,160.00 2,160.00 - - - 19-10-20173015

<colgroup><col><col span="3"><col span="4"><col><col span="2"></colgroup><tbody>
</tbody>
and what i need to be able to do is where the over due date is move it across according to how many days it is over due.

for example anything below 30 in current. Above 30 P1 but not greater than 59. and so on.

Thanks,

Kevin
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
for example anything below 30 in current. Above 30 P1 but not greater than 59. and so on.

need a bit more explanations regarding these.

are the P2, P3 etc come into play?
 
Last edited:
Upvote 0
need a bit more explanations regarding these.

are the P2, P3 etc come into play?


Hi Apologies

What i am looking for is formulae that can help me put these numbers into the correct category.

this is the scenarios-

1. if the invoice is over due by 30 days or less it goes into current.
2. if the invoice is over 31 but below 59 days into p1
3. if the invoice is over 60 days but less that 89 days p2
4. if the invoice is over 90days but less than 119 p3
5 and then anything above 120


thanks,
 
Upvote 0
ok, may be this


Excel 2013/2016
ABCDEFGHIJK
1DateBalanceCurrentP1P2P3P4OlderDue DatePayment TermsDays Overdue
219/09/20172,160.00 2,160.00   19/10/20173035
Sheet1
Cell Formulas
RangeFormula
C2=IF($K$2<=30,$B$2,"")
D2=IF(AND($K$2>30,$K$2<=60),$B$2,"")
E2=IF(AND($K$2>60,$K$2<=90),$B$2,"")
F2=IF(AND($K$2>90,$K$2<=120),$B$2,"")
G2=IF($K$2>120,$B$2,"")
 
Upvote 0
Kevzmm,

a more flexible solution.
Tabelle1 (2)

ABCDEFGHIJKL
1DateBalanceCurrentP1P2P3P4OlderDue DatePayment TermsDays Overdue
219.09.201721602160000019.10.20173000
320.10.201721602160000019.10.20173010
419.11.201721600216000019.10.201730311
519.12.201721600021600019.10.201730612
619.01.201821600002160019.10.201730923
719.02.201821600000216019.10.2017301234

<tbody>
</tbody>

Formeln der Tabelle
ZelleFormel
C2=(COLUMN()-3=$L2)*$B2
K2=MAX(0,A2-I2)
L2=QUOTIENT(K2,J2)

<tbody>
</tbody>

<tbody>
</tbody>


Excel Tabellen im Web darstellen >> Excel Jeanie HTML 4.8
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,186
Members
449,071
Latest member
cdnMech

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