Formula Opposite of DAYS360?

gjeberly

New Member
Joined
Aug 20, 2019
Messages
4
Hi all,

I'm curious if there's a formula to do the opposite of DAYS360. That is, DAYS360 figures out the number of days between two dates on a 360 day basis. I want to make a formula that adds a number of days on a 360 day basis.

So if my starting date is 5/25/19 and I add 6 days, it should result in 6/1/19 instead of 5/31/19. Is this possible?

Thanks for any help.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Just add 7 days instead of 6? Not sure what your question is. You can write a formula where the date is in cell A1 and then B1 =A1+7
 
Upvote 0
You could use the WORKDAY.INTL function to add days. Set every day is a weekday, then make a list of all the days that are the 31st of a month as holidays. Like this:


Book1
KLMN
125-May31-May31-Jan
21-Jun31-Mar
331-May
427-Feb5-Mar31-Jul
55-Mar31-Aug
631-Oct
731-Dec
Sheet1
Cell Formulas
RangeFormula
L1=K1+6
L2=WORKDAY.INTL(K1,6,"0000000",N1:N7)
L4=K4+6
L5=WORKDAY.INTL(K4,6,"0000000",N1:N7)


The problem is February, I'm not sure how to handle that.
 
Upvote 0
You could use the WORKDAY.INTL function to add days. Set every day is a weekday, then make a list of all the days that are the 31st of a month as holidays. Like this:

KLMN
125-May31-May31-Jan
21-Jun31-Mar
331-May
427-Feb5-Mar31-Jul
55-Mar31-Aug
631-Oct
731-Dec

<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
L1=K1+6
L2=WORKDAY.INTL(K1,6,"0000000",N1:N7)
L4=K4+6
L5=WORKDAY.INTL(K4,6,"0000000",N1:N7)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>



The problem is February, I'm not sure how to handle that.

This might have to be my solution if there isn't anything built into Excel. February always causes problems with 360 day bases unfortunately.
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,718
Members
448,986
Latest member
andreguerra

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