Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to create a spreadsheet where I can enter a date and have a date
27 days from that date pop into the cell next to it. I need to do this for 7 months. I don't even know if it's possible. For example, if I put the date 10/01/2008 into a cell, I want the spreadsheet to calculate 27 days and put that date into the next cell (10/28/2008). I want it to do that for 7 cells. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=a2+27 assuming de 10/01/2008 is in A2
hth -- regards from Brazil Thanks in advance for your feedback. Marcelo "mdj0615" escreveu: I am trying to create a spreadsheet where I can enter a date and have a date 27 days from that date pop into the cell next to it. I need to do this for 7 months. I don't even know if it's possible. For example, if I put the date 10/01/2008 into a cell, I want the spreadsheet to calculate 27 days and put that date into the next cell (10/28/2008). I want it to do that for 7 cells. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Say date 10/01/2008 is in A2 then in B2 enter =A2+27
Make sure B2 is formatted the same as A2 If the 27 days is variable put the variable number of days in A1 then in B2 enter =A2+A1 Copy down as necessary "mdj0615" wrote: I am trying to create a spreadsheet where I can enter a date and have a date 27 days from that date pop into the cell next to it. I need to do this for 7 months. I don't even know if it's possible. For example, if I put the date 10/01/2008 into a cell, I want the spreadsheet to calculate 27 days and put that date into the next cell (10/28/2008). I want it to do that for 7 cells. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you, that worked well. Is there a way to have columns automatically
set up to do this? I put 27 in A2, then 10/01/08 in b2, then i put a2+b2, etc down the row. Is there a way to make the columns just know what I want them to do? I know I'm asking a lot. "Ron@Buy" wrote: Say date 10/01/2008 is in A2 then in B2 enter =A2+27 Make sure B2 is formatted the same as A2 If the 27 days is variable put the variable number of days in A1 then in B2 enter =A2+A1 Copy down as necessary "mdj0615" wrote: I am trying to create a spreadsheet where I can enter a date and have a date 27 days from that date pop into the cell next to it. I need to do this for 7 months. I don't even know if it's possible. For example, if I put the date 10/01/2008 into a cell, I want the spreadsheet to calculate 27 days and put that date into the next cell (10/28/2008). I want it to do that for 7 cells. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Possibly
What exactly do you want the columns to do? "mdj0615" wrote: Thank you, that worked well. Is there a way to have columns automatically set up to do this? I put 27 in A2, then 10/01/08 in b2, then i put a2+b2, etc down the row. Is there a way to make the columns just know what I want them to do? I know I'm asking a lot. "Ron@Buy" wrote: Say date 10/01/2008 is in A2 then in B2 enter =A2+27 Make sure B2 is formatted the same as A2 If the 27 days is variable put the variable number of days in A1 then in B2 enter =A2+A1 Copy down as necessary "mdj0615" wrote: I am trying to create a spreadsheet where I can enter a date and have a date 27 days from that date pop into the cell next to it. I need to do this for 7 months. I don't even know if it's possible. For example, if I put the date 10/01/2008 into a cell, I want the spreadsheet to calculate 27 days and put that date into the next cell (10/28/2008). I want it to do that for 7 cells. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
My spreadsheet has columns a-l used for client info. Each row is a different
client. k-z are alternating columns of the months and times. Each client is seen monthly from october to may. What I want is to be able to enter their first appointment date in column k, and have the spreadsheet auto-populate the dates into the rest of the columns. I'm always sorting the sheet to find out who's being seen on which days, and it takes a great deal of time to pull out a calander and figure it out each time. "Ron@Buy" wrote: Possibly What exactly do you want the columns to do? "mdj0615" wrote: Thank you, that worked well. Is there a way to have columns automatically set up to do this? I put 27 in A2, then 10/01/08 in b2, then i put a2+b2, etc down the row. Is there a way to make the columns just know what I want them to do? I know I'm asking a lot. "Ron@Buy" wrote: Say date 10/01/2008 is in A2 then in B2 enter =A2+27 Make sure B2 is formatted the same as A2 If the 27 days is variable put the variable number of days in A1 then in B2 enter =A2+A1 Copy down as necessary "mdj0615" wrote: I am trying to create a spreadsheet where I can enter a date and have a date 27 days from that date pop into the cell next to it. I need to do this for 7 months. I don't even know if it's possible. For example, if I put the date 10/01/2008 into a cell, I want the spreadsheet to calculate 27 days and put that date into the next cell (10/28/2008). I want it to do that for 7 cells. |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
OK I think I can see what you're about. More more questions tho'.
You mention a cycle of 27 days - how are you dealing with weekends within the 27 days? ie if the 27th day after the last appointment falls in a weekend do you reschedule to the following Monday - or what? Is the time of the appointment the same for each consecutive date? How are you sorting the sheet to determine the next appointment? "mdj0615" wrote: My spreadsheet has columns a-l used for client info. Each row is a different client. k-z are alternating columns of the months and times. Each client is seen monthly from october to may. What I want is to be able to enter their first appointment date in column k, and have the spreadsheet auto-populate the dates into the rest of the columns. I'm always sorting the sheet to find out who's being seen on which days, and it takes a great deal of time to pull out a calander and figure it out each time. "Ron@Buy" wrote: Possibly What exactly do you want the columns to do? "mdj0615" wrote: Thank you, that worked well. Is there a way to have columns automatically set up to do this? I put 27 in A2, then 10/01/08 in b2, then i put a2+b2, etc down the row. Is there a way to make the columns just know what I want them to do? I know I'm asking a lot. "Ron@Buy" wrote: Say date 10/01/2008 is in A2 then in B2 enter =A2+27 Make sure B2 is formatted the same as A2 If the 27 days is variable put the variable number of days in A1 then in B2 enter =A2+A1 Copy down as necessary "mdj0615" wrote: I am trying to create a spreadsheet where I can enter a date and have a date 27 days from that date pop into the cell next to it. I need to do this for 7 months. I don't even know if it's possible. For example, if I put the date 10/01/2008 into a cell, I want the spreadsheet to calculate 27 days and put that date into the next cell (10/28/2008). I want it to do that for 7 cells. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto Fill days of the month (not including weekends) | Excel Worksheet Functions | |||
auto fill every other cell from other workbook | Excel Discussion (Misc queries) | |||
Conditional cell auto fill | Excel Worksheet Functions | |||
Auto fill cell entry | Excel Discussion (Misc queries) | |||
Auto-fill cell based on adjacent cell information.. | Excel Worksheet Functions |