Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Repete Dates at a value of 28 days, 56 & 84

I have done for the last 2 years counted forward when my repete priscription
is due (medication)

I have a spead sheet and my calander. I have been manualy inputting the
dates to remind me.

Help.

Yep there is a fast way but Im new at this.

What I do. I have meds just arrived on 22/08/06 these last for 56 days
(8weeks) so I would like to enter in a cell the last date i received them
and a period of how many I received (days) this will then give me the next
date it is due for repete.

Not all my meds are 56 day. some are 28 & 84

Hope you understand. Thanks for looking.



  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Repete Dates at a value of 28 days, 56 & 84

You're lucky that XL's dates are incremented by the day.

So, just add the number of days to a cell containing the start date.

A1 = 1/1/06

B1 = 10

C1 contains this formula:
=A1+B1
C1 displays
1/11/06


So make Column A your start date,

Leave Column B for your duration (days), which you will manually key in,

And enter this formula in Column C:

=IF(AND(A10,B10),A1+B1,"")

This will leave Column C empty, until you enter values in Column A and B.
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===



"Mr Mr" wrote in message
...
I have done for the last 2 years counted forward when my repete priscription
is due (medication)

I have a spead sheet and my calander. I have been manualy inputting the
dates to remind me.

Help.

Yep there is a fast way but Im new at this.

What I do. I have meds just arrived on 22/08/06 these last for 56 days
(8weeks) so I would like to enter in a cell the last date i received them
and a period of how many I received (days) this will then give me the next
date it is due for repete.

Not all my meds are 56 day. some are 28 & 84

Hope you understand. Thanks for looking.




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Repete Dates at a value of 28 days, 56 & 84

Med name in Column A

Received date in Column B

Number of days in Column C

In Column D is renew date.

In D2 enter =IF(OR(B2=0,C2=0),"",B2+C2)

Copy down D as far as you want.


Gord Dibben MS Excel MVP

On Sat, 26 Aug 2006 16:01:05 GMT, "Mr Mr" wrote:

I have done for the last 2 years counted forward when my repete priscription
is due (medication)

I have a spead sheet and my calander. I have been manualy inputting the
dates to remind me.

Help.

Yep there is a fast way but Im new at this.

What I do. I have meds just arrived on 22/08/06 these last for 56 days
(8weeks) so I would like to enter in a cell the last date i received them
and a period of how many I received (days) this will then give me the next
date it is due for repete.

Not all my meds are 56 day. some are 28 & 84

Hope you understand. Thanks for looking.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 459
Default Repete Dates at a value of 28 days, 56 & 84

Mr Mr wrote:
I have done for the last 2 years counted forward when my repete
priscription is due (medication)

I have a spead sheet and my calander. I have been manualy inputting
the dates to remind me.

Help.

Yep there is a fast way but Im new at this.

What I do. I have meds just arrived on 22/08/06 these last for 56 days
(8weeks) so I would like to enter in a cell the last date i received
them and a period of how many I received (days) this will then give
me the next date it is due for repete.

Not all my meds are 56 day. some are 28 & 84

Hope you understand. Thanks for looking.


Hi,

try this

=DATE(YEAR(A1),MONTH(A1),DAY(A1)+B1)

where in A1 is the starting date (i.e. 22/08/06) and B1 is the number of
days to add to the starting date (i.e. 56 or 28 or 84 or wvery number of
days you need...).

You can also find some useful template he

http://office.microsoft.com/en-us/te...482901033.aspx

--
Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Repete Dates at a value of 28 days, 56 & 84

01/01/2006 28 38746



Tried it but it gives above result.

Im in the UK, my date format is day/month/year could this be the reason Im
gettind 38746 instead of 29/01/2006 ???



I have found a slow but it works method, but would prefair fater one.

Thanks for you help!!


"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Med name in Column A

Received date in Column B

Number of days in Column C

In Column D is renew date.

In D2 enter =IF(OR(B2=0,C2=0),"",B2+C2)

Copy down D as far as you want.


Gord Dibben MS Excel MVP

On Sat, 26 Aug 2006 16:01:05 GMT, "Mr Mr"
wrote:

I have done for the last 2 years counted forward when my repete
priscription
is due (medication)

I have a spead sheet and my calander. I have been manualy inputting the
dates to remind me.

Help.

Yep there is a fast way but Im new at this.

What I do. I have meds just arrived on 22/08/06 these last for 56 days
(8weeks) so I would like to enter in a cell the last date i received them
and a period of how many I received (days) this will then give me the next
date it is due for repete.

Not all my meds are 56 day. some are 28 & 84

Hope you understand. Thanks for looking.







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Repete Dates at a value of 28 days, 56 & 84

What you have is XL's date serial number.

Simply format that cell to any date format you would like to see displayed.
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Mr Mr" wrote in message
...
01/01/2006 28 38746



Tried it but it gives above result.

Im in the UK, my date format is day/month/year could this be the reason Im
gettind 38746 instead of 29/01/2006 ???



I have found a slow but it works method, but would prefair fater one.

Thanks for you help!!


"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Med name in Column A

Received date in Column B

Number of days in Column C

In Column D is renew date.

In D2 enter =IF(OR(B2=0,C2=0),"",B2+C2)

Copy down D as far as you want.


Gord Dibben MS Excel MVP

On Sat, 26 Aug 2006 16:01:05 GMT, "Mr Mr"
wrote:

I have done for the last 2 years counted forward when my repete
priscription
is due (medication)

I have a spead sheet and my calander. I have been manualy inputting the
dates to remind me.

Help.

Yep there is a fast way but Im new at this.

What I do. I have meds just arrived on 22/08/06 these last for 56 days
(8weeks) so I would like to enter in a cell the last date i received them
and a period of how many I received (days) this will then give me the next
date it is due for repete.

Not all my meds are 56 day. some are 28 & 84

Hope you understand. Thanks for looking.






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Repete Dates at a value of 28 days, 56 & 84

Works Fine and dandy. Cheers everyone

I know where to ask for help!


"Mr Mr" wrote in message
...
I have done for the last 2 years counted forward when my repete
priscription is due (medication)

I have a spead sheet and my calander. I have been manualy inputting the
dates to remind me.

Help.

Yep there is a fast way but Im new at this.

What I do. I have meds just arrived on 22/08/06 these last for 56 days
(8weeks) so I would like to enter in a cell the last date i received them
and a period of how many I received (days) this will then give me the next
date it is due for repete.

Not all my meds are 56 day. some are 28 & 84

Hope you understand. Thanks for looking.





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Desperately trying to build a paid time off accrual worksheet... cgautreau Excel Worksheet Functions 9 June 24th 09 10:29 AM
Calculate days between dates sunita_shaw Excel Worksheet Functions 4 March 7th 06 07:28 PM
need help with formula Bryan J Bloom Excel Discussion (Misc queries) 11 October 31st 05 10:52 PM
convert dates to number of days milk0s Excel Worksheet Functions 2 September 28th 05 01:31 PM
Brainteaser about Days Between Dates Johnny Excel Discussion (Misc queries) 5 April 4th 05 05:09 AM


All times are GMT +1. The time now is 06:43 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"