Payment Plan

Status
Not open for further replies.

Blake0920

Board Regular
Joined
Jan 2, 2022
Messages
60
Office Version
  1. 2016
Platform
  1. Windows
Trying to figure out a way where I can create a table that is approx 18 months in length that will calculate payment plans. The customer has either 3,6,9, or 12 months to pay.

I wanted to make a formula that would allow for the sale price to be divided by the payment plan and then added to Feb-22, Mar-22, Apr-22 and so on.

How do I have that payment replicate 12/9/6/3 times once it has been entered?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
very simple solution below, something like

But you would need to put your spreadsheet on here using XL2BB - if you need something specific to your layout

also a lot of templates online free for excel


Month-pay-ETAF.xlsx
ABCDEFGHIJKLMNO
1AmountPay NoFeb-22Mar-22Apr-22May-22Jun-22Jul-22Aug-22Sep-22Oct-22Nov-22Dec-22Jan-23Feb-23
212300034100041000410000000000000
312300062050020500205002050020500205000000000
4123000913666.666713666.666713666.666713666.666713666.666713666.666713666.666713666.666713666.66670000
5123000121025010250102501025010250102501025010250102501025010250102500
Sheet1
Cell Formulas
RangeFormula
C2:C5C2=A2/B2
D2:O2D2=IF(COUNTA($C$2:C2)+1<=$B2,$A2/$B2,0)
D3:O3D3=IF(COUNTA($C$3:C3)+1<=$B3,$A3/$B3,0)
D4:O4D4=IF(COUNTA($C$4:C4)+1<=$B4,$A4/$B4,0)
D5:O5D5=IF(COUNTA($C$5:C5)+1<=$B5,$A5/$B5,0)
 
Upvote 0
Okay that makes a lot more sense now. I am going to work on this for a bit.

My next question is that I am trying to figure out how may people are on each payment plan but I am getting 1 extra value each time I create the formula. For example for the month of Feb-22 there are 3 people on the 3mo payment plan BUT this formula is calculating as 4 people. =COUNT((Orders!C4:C71)*(Orders!I4:I71="3M"))
 

Attachments

  • Screenshot 2022-02-16 114623.png
    Screenshot 2022-02-16 114623.png
    20.2 KB · Views: 6
Upvote 0
I have also tried using this formula but it doesn't seem to like it. =SUBTOTAL(3,Orders!C4:C71)+COUNT(Orders!I4:I71="3M")
 
Upvote 0
ok, not easy to see in a photo attachment , or use - can you give a sample sheet with examples and expected results using XL2BB - see menu or my signature
or on a share like onedrive/dropbox
 
Upvote 0
For whatever reason my excel program is not allowing for the XL2BB
 
Upvote 0
Here is a better screenshot.

Don't want to share on onedrive/dropbox - personal information of clients on it
 

Attachments

  • Screenshot 2022-02-16 131954.png
    Screenshot 2022-02-16 131954.png
    16.9 KB · Views: 4
Upvote 0
take all the private info out , so you can share - XL2BB would also have private info
- its still difficult with that picture and also means i have to type all that into a sheet to then help , quite time consuming
It does not explain what result you are expecting or why
Sorry if i'm coming across difficult , just trying to help as effectively as i can
 
Upvote 0
No i appreciate your help.

I found the solution. =SUMPRODUCT(--ISTEXT(I4:I71)*(Orders!A4:A71>="02")*(Orders!A4:A71<="03")*(I4:I71="3M"))
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,214,978
Messages
6,122,547
Members
449,089
Latest member
davidcom

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