Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
From a "start date" in current month; I want to return a billing due date to
always be the 10th of the following month. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=DATE(YEAR(A1),MONTH(A1)+1,10)
"Statesman" wrote: From a "start date" in current month; I want to return a billing due date to always be the 10th of the following month. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This is GREAT!! Now I need to know how to roll the billing date to the 10th
of next month & year (ie: 01/10/07) when the current month is December (ie: (12/08/06). Thanks!! "Teethless mama" wrote: =DATE(YEAR(A1),MONTH(A1)+1,10) "Statesman" wrote: From a "start date" in current month; I want to return a billing due date to always be the 10th of the following month. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The DATE function is smart! It will automatically adjust the year.
A1 = 12/8/2006 =DATE(YEAR(A1),MONTH(A1)+1,10) Returns: 1/10/2007 -- Biff Microsoft Excel MVP "Statesman" wrote in message ... This is GREAT!! Now I need to know how to roll the billing date to the 10th of next month & year (ie: 01/10/07) when the current month is December (ie: (12/08/06). Thanks!! "Teethless mama" wrote: =DATE(YEAR(A1),MONTH(A1)+1,10) "Statesman" wrote: From a "start date" in current month; I want to return a billing due date to always be the 10th of the following month. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
A1: (a date) This formula returns the 10th day of month after the month containing A1 B1: =DATE(YEAR(A1),MONTH(A1)+1,10) Does that help? *********** Regards, Ron XL2003, WinXP "Statesman" wrote: From a "start date" in current month; I want to return a billing due date to always be the 10th of the following month. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Just another way:
=A1+33-DAY(A1+33)+10 -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Statesman" wrote in message ... From a "start date" in current month; I want to return a billing due date to always be the 10th of the following month. |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Sandy
It works fine until A1 contains either the 30th or 31st of a month, when it give the 10th of the month two months hence. -- Regards Roger Govier "Sandy Mann" wrote in message ... Just another way: =A1+33-DAY(A1+33)+10 -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Statesman" wrote in message ... From a "start date" in current month; I want to return a billing due date to always be the 10th of the following month. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Function to return a month name from a number (1-12) that is not a | Excel Worksheet Functions | |||
Return mm/dd/yy based on 1st Day of Month | Excel Worksheet Functions | |||
Return Maximum value for Specific Month(s) | Excel Worksheet Functions | |||
return month from a date | Excel Discussion (Misc queries) | |||
Return 1st of the Month | Excel Worksheet Functions |