Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I recieve income on the 1st and the 15th of every month, regardless of
the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Type in 1/1/07 in B1 and 15/1/07 (or 1/15/07) in C1, then in D1 enter
this formula: =DATE(YEAR(B1),MONTH(B1)+1,DAY(B1)) Then copy this across row 1 for as many columns as you need. You can have different start dates in B1:C1. Hope this helps. Pete On Nov 18, 6:28 pm, wrote: I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In A1 : 1/1/2007
In A2 : 1/15/2007 Select both cells and copy down with your mouse but not with your right mouse button but with your left button. When you release your mouse you see a dialog with the option "Fill months" -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm wrote in message ... I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Oops
It is Left - right filldown with your right button -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Ron de Bruin" wrote in message ... In A1 : 1/1/2007 In A2 : 1/15/2007 Select both cells and copy down with your mouse but not with your right mouse button but with your left button. When you release your mouse you see a dialog with the option "Fill months" -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm wrote in message ... I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
Enter your first date in cell A1. Enter this formula in B1 and copy across as needed: =IF(DAY(A1)=1,A1+14,A1+17-DAY(A1+17)+1) Format the cells as DATE -- Biff Microsoft Excel MVP wrote in message ... I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed? |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Another way: with a starting date in A1, in B1 put: =DATE(YEAR(A1),IF(DAY(A1)=1,MONTH(A1),MONTH(A1)+1) ,IF(DAY(A1)=1,15,1)) copy down HTH Jean-Guy " wrote: I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed? |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you are not worried about work vs nonwork dates.
B1: =IF(DAY(A1)=1,A1+14,IF(DAY(A1)=15,DATE(YEAR(A1),MO NTH(A1)+1,1),"broken")) Format the row as a date, fill across with fill handle, and will continue into the next year(s). -- HTH, David McRitchie, Microsoft MVP -- Excel My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm wrote in message ... I receive income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed? |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Sun, 18 Nov 2007 13:50:06 -0500, Ron Rosenfeld
wrote: On Sun, 18 Nov 2007 10:28:42 -0800 (PST), wrote: I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed? Instead of auto-fill, why not use a formula: =IF(DAY(A1)=15,A1+33-DAY(A1+32),A1+14) --ron This assumes A1 contains a date that is either the 1st or 15th of some month. --ron |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Good one Ron
Gord On Sun, 18 Nov 2007 19:55:14 +0100, "Ron de Bruin" wrote: In A1 : 1/1/2007 In A2 : 1/15/2007 Select both cells and copy down with your mouse but not with your right mouse button but with your left button. When you release your mouse you see a dialog with the option "Fill months" |
#11
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Good one Ron
Thanks Gord Not many people know about this trick -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Gord Dibben" <gorddibbATshawDOTca wrote in message ... Good one Ron Gord On Sun, 18 Nov 2007 19:55:14 +0100, "Ron de Bruin" wrote: In A1 : 1/1/2007 In A2 : 1/15/2007 Select both cells and copy down with your mouse but not with your right mouse button but with your left button. When you release your mouse you see a dialog with the option "Fill months" |
#12
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Nov 18, 1:49 pm, Pete_UK wrote:
Type in 1/1/07 in B1 and 15/1/07 (or 1/15/07) in C1, then in D1 enter this formula: =DATE(YEAR(B1),MONTH(B1)+1,DAY(B1)) Then copy this across row 1 for as many columns as you need. You can have different start dates in B1:C1. Hope this helps. Pete On Nov 18, 6:28 pm, wrote: I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed?- Hide quoted text - - Show quoted text - I got a #NUM error on this one. Sorry. |
#13
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Nov 18, 1:50 pm, Ron Rosenfeld wrote:
On Sun, 18 Nov 2007 10:28:42 -0800 (PST), wrote: I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed? Instead of auto-fill, why not use a formula: =IF(DAY(A1)=15,A1+33-DAY(A1+32),A1+14) --ron This worked perfectly for me. Thank-you |
#14
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Nov 18, 1:55 pm, "Ron de Bruin" wrote:
In A1 : 1/1/2007 In A2 : 1/15/2007 Select both cells and copy down with your mouse but not with your right mouse button but with your left button. When you release your mouse you see a dialog with the option "Fill months" -- Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm wrote in ... I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed?- Hide quoted text - - Show quoted text - This was JUST simply beautiful What a fantastic shortcut. Thank you so much... |
#15
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Nov 18, 1:59 pm, "T. Valko" wrote:
Try this: Enter your first date in cell A1. Enter this formula in B1 and copy across as needed: =IF(DAY(A1)=1,A1+14,A1+17-DAY(A1+17)+1) Format the cells as DATE -- Biff Microsoft Excel MVP wrote in message ... I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed?- Hide quoted text - - Show quoted text - Thank you. this seems to work similar to the earlier post, using 17 instead of 34/32 This works for me as well. Thanks. |
#16
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
So many answers, and not all within minutes, was a server down.
|
#17
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
wrote in message
... On Nov 18, 1:59 pm, "T. Valko" wrote: Try this: Enter your first date in cell A1. Enter this formula in B1 and copy across as needed: =IF(DAY(A1)=1,A1+14,A1+17-DAY(A1+17)+1) Format the cells as DATE -- Biff Microsoft Excel MVP wrote in message ... I recieve income on the 1st and the 15th of every month, regardless of the month, or day. Understanding the serial number feature of Excel, I cannot create a autofill that will fill in the 1st and 15th of every month. I need to be able to type in the 1st of a month then autofill across and have it pick up the 1st and 15th of every month. How can this be performed?- Hide quoted text - - Show quoted text - Thank you. this seems to work similar to the earlier post, using 17 instead of 34/32 This works for me as well. Thanks. You're welcome. Thanks for the feedback! -- Biff Microsoft Excel MVP |
#18
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Worked okay for me - did you type the formula incorrectly?
Pete On Nov 19, 1:09 am, wrote: I got a #NUM error on this one. Sorry |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Specific Dates | Excel Worksheet Functions | |||
Filling in missing dates | Excel Worksheet Functions | |||
filling information from one cell and filling another. | Excel Worksheet Functions | |||
Determining the number of specific days between two dates in Excel | Excel Worksheet Functions | |||
Auto filling dates on other worksheets with data from a next payme | Excel Worksheet Functions |