Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to create a running sheet of dates down the page, each date is 7 days
ahead of the former. Also, each date will be separated by 5 rows before the next date isdisplayed. I can find date formulas that calculate number of days inbetween given dates, but can't find a simple 'add 7 to the last date' function. It's probably simple, but I would welcome some guidance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Put in the first date in the first cell. 5 cells down type
=1stCell + 7 then copy the blank row below the 1st cell down to the cell with the formula. Then you should be able to paste that all the way down to how ever many dates you want. Let me know if that works. I'm on a community computer right now that doesn't have excel, lol. "Twishlist" wrote: I want to create a running sheet of dates down the page, each date is 7 days ahead of the former. Also, each date will be separated by 5 rows before the next date isdisplayed. I can find date formulas that calculate number of days inbetween given dates, but can't find a simple 'add 7 to the last date' function. It's probably simple, but I would welcome some guidance. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
i am not clear what u mean ,but if i understand right
try: =IF(MOD(ROW(),7)=0,($A$1+7*ROW()/7),"") -- Regards, Sebation.G "Twishlist" ... I want to create a running sheet of dates down the page, each date is 7 days ahead of the former. Also, each date will be separated by 5 rows before the next date isdisplayed. I can find date formulas that calculate number of days inbetween given dates, but can't find a simple 'add 7 to the last date' function. It's probably simple, but I would welcome some guidance. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Here's one way.
I'm assuming you don't want anything in those 5 rows between dates. Assume your first date is in cell A1. Manually enter that date in cell A1. Now, select all the cells where you want the other dates to appear. I'll assume those cells are A7, A13 and A19. Select those cells type in this formula: =OFFSET(A19,-6,,)+7 Now, don't just hit the ENTER key. Use the key combination of CTRL, ENTER. That is, hold down the CTRL key then hit the ENTER key. Format the cells as DATE Another way to do it but use a formula in every cell. Enter the first date in cell A1. Then enter this formula in A2 and copy down as needed: =IF(MOD(ROWS($1:1),6)=0,A$1+COUNT(A$1:A1)*7,"") Format as DATE This will put the dates in the appropriate cells and leave the other cells blank. Biff "Twishlist" wrote in message ... I want to create a running sheet of dates down the page, each date is 7 days ahead of the former. Also, each date will be separated by 5 rows before the next date isdisplayed. I can find date formulas that calculate number of days inbetween given dates, but can't find a simple 'add 7 to the last date' function. It's probably simple, but I would welcome some guidance. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Tue, 15 May 2007 21:22:01 -0700 from Twishlist
: I want to create a running sheet of dates down the page, each date is 7 days ahead of the former. Also, each date will be separated by 5 rows before the next date isdisplayed. I can find date formulas that calculate number of days inbetween given dates, but can't find a simple 'add 7 to the last date' function. It's probably simple, but I would welcome some guidance. Put your first date in A1. In A6 (5 rows later) put =7+A1. Format it as a date. Then copy cell A6 to A11, A16, A21, etc for as many weeks as you need. -- Stan Brown, Oak Road Systems, Tompkins County, New York, USA http://OakRoadSystems.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to I create a comma separated values file | Excel Discussion (Misc queries) | |||
How do I create a list of sequential numbers in Excel 2003? | Excel Discussion (Misc queries) | |||
How to create '|' separated file | Excel Discussion (Misc queries) | |||
Auto filtering vs Date List Create List | Excel Worksheet Functions | |||
How do I create a list of sequential numbers using Excel or Acces. | Excel Discussion (Misc queries) |