Rounding Dates

kcrabb2

New Member
Joined
Oct 22, 2015
Messages
9
Hi!

I have a sheet that includes looks like the below table. What I would like to do is take the invoice date, add the terms and come up with a payment date that is rounded to either the 10th or the 25th of the month, since those are the days we do our check runs.

Thanks!

[TABLE="class: grid, width: 200, align: left"]
<tbody>[TR]
[TD]Invoice Date[/TD]
[TD]Terms[/TD]
[TD]Payment Date[/TD]
[/TR]
[TR]
[TD]10/20/2015[/TD]
[TD]60[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]08/10/2015[/TD]
[TD]45
[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Hi,
Considering you have Invoice date and Tems in Cell A1 and B1 respectively , try this formula in C1
Code:
=IF(25-DAY(A1+B1)>10,10,25)
Stay tuned for a better formula from pgc01 :)
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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