Populating Payment Schedule Based on Monthly or Quarterly Payments

jasonkgreen

Board Regular
Joined
Feb 21, 2013
Messages
50
What is the most efficient way to populate a payment schedule based on whether the payments are monthly vs. quarterly?

For instance, in the image attached, I would place the payments in the yellow cells for Quarterly pay and in the green cells for Monthly payments. However, these may change based on the client. I want to be able to put either Quarterly or Monthly in cell Bx, and the schedule populates appropriately.

The start date will vary for each client as well. That will be an input with the remaining dates populated using the EDATE function.

Thanks in advance.
 

Attachments

  • Screenshot 2023-09-18 155245.png
    Screenshot 2023-09-18 155245.png
    108.2 KB · Views: 16

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
I'm not sure if you're looking for a conditional formatting rule or not. But, I've written a function below that you can insert your payment calculation in the "TRUE" portions of the formulas and "" in the "FALSE" portions.


Cell Formulas
RangeFormula
D2:O2D2=EDATE(C2,1)
C4:O10C4=IF($B4="Monthly",TRUE,IF(MOD(COLUMN(C4)-3,3)+1=3,TRUE,FALSE))


If you just a want conditional formatting formula just use the conditional argument of the IF function without the IF
Excel Formula:
=IF($B4="Monthly",TRUE,MOD(COLUMN(C4)-3,3)+1=3)
 
Upvote 0

Forum statistics

Threads
1,215,086
Messages
6,123,038
Members
449,092
Latest member
ikke

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