![]() |
excel
can someone please tell me how i can change the date at the beginning of each
year and it will change all the way through my work for the rest of the year? months and weeks . |
excel
alice;282677 Wrote: can someone please tell me how i can change the date at the beginning of each year and it will change all the way through my work for the rest of the year? months and weeks . Well you didn't give much to go on but entering =TODAY() in a cell will provide you with todays date changing for the relevant date each day....is that what you wanted? -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=78961 |
excel
=c4+7
(=columnandrow+7) Put your 1st date in and when you get to the 2nd cell =c4+7 and copy and paste special all the way down. "alice" wrote: can someone please tell me how i can change the date at the beginning of each year and it will change all the way through my work for the rest of the year? months and weeks . |
excel
"alice" wrote:
can someone please tell me how i can change the date at the beginning of each year and it will change all the way through my work for the rest of the year? months and weeks . There a lot of ways to do this, depending on exactly what you want. It would be helpful if you provided specific examples (always!). Suppose you put the initial date in A1, and you want the same day in each month for 12 months in A2:A13. Then put the following into A2 and copy down: =date(year(A1),1+month(A1),day(A1)) Caveat: That might have undersired results if the day is 31, and if the day is 29 or more and you run through Feb. There are ways to handle that appropriately. But it's not worth the trouble explaining them until you clarify what you want. FYI, advancing the date by one week is simpler. Ostensibly, =A1+7. |
excel
Hi Simon, thanks for your reply .......i tried putting =TODAY() and it put
the date just into one cell . its hard to describe what i am wanting but here goes. i have boxes that i write in for each day of the week for the whole year ahead . i wanted to not have to go through each week every year changing the date and day and somebody did do this for me once but didnt tell me how to do it . can you help as i am a beginner at this. thanks alice "Simon Lloyd" wrote: alice;282677 Wrote: can someone please tell me how i can change the date at the beginning of each year and it will change all the way through my work for the rest of the year? months and weeks . Well you didn't give much to go on but entering =TODAY() in a cell will provide you with todays date changing for the relevant date each day....is that what you wanted? -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=78961 |
Automatically advancing dates in cells for each new year?
Hi I am a real novice with Excel but I would really appreciate some help with what I am trying to achieve. I have lots of boxes or cells do you call them in which i write things for each day of the year. They will each be under each day of the week. The thing is someone did set this up for me but for some reason it no longer works......whether its anything to do with the fact that I have a new computor with maybe different microsoft office 2007 I dont know. Anyway I would like to be able to change the dates for each week by just changing the first day and then the rest of the weeks automatically change to the year i am dealing with ..........hope your understanding all this. I dont want to have to go through each day of each week changing the date in the boxes. Please can anyone help me Thanks Alice -- ALICE ------------------------------------------------------------------------ ALICE's Profile: http://www.thecodecage.com/forumz/member.php?userid=201 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
ALICE;284366 Wrote: Hi I am a real novice with Excel but I would really appreciate some help with what I am trying to achieve. I have lots of boxes or cells do you call them in which i write things for each day of the year. They will each be under each day of the week. The thing is someone did set this up for me but for some reason it no longer works......whether its anything to do with the fact that I have a new computor with maybe different microsoft office 2007 I dont know. Anyway I would like to be able to change the dates for each week by just changing the first day and then the rest of the weeks automatically change to the year i am dealing with ..........hope your understanding all this. I dont want to have to go through each day of each week changing the date in the boxes. Please can anyone help me Thanks Alice Alice welcome to The Code Cage Why not upload a sample workbook so we can help you directly with that? Attatchments. To upload a workbook, click reply then add your few words, scroll down past the submit button and you will see the Manage Attatchments button, this is where you get to add files for upload, if you have any trouble please use this link or the one at the bottom of the any page. I will merge your post from the Microsoft Newsgroups with this one too! :) -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
Title changed to better reflect the content :) -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
hi i have hopefully attatched on the items i am trying to work on. thankyou +-------------------------------------------------------------------+ |Filename: WEEKLY CATS.xls | |Download: http://www.thecodecage.com/forumz/attachment.php?attachmentid=101| +-------------------------------------------------------------------+ -- ALICE ------------------------------------------------------------------------ ALICE's Profile: http://www.thecodecage.com/forumz/member.php?userid=201 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
If you want to keep the structure use this example in the cell *=DATE(YEAR(TODAY()),7,2)* and then right click the cell Format CellsCustom double click the word "General" in the box and paste this in *mmmm dd yyyy dddd* To explain:*=DATE(YEAR(TODAY()),7,2)* the* DATE *function allows your to specify the components of the date, the *YEAR* function allows you to split a year out from a date, if we use the TODAY function it will mean the year will always be the current year, the rest is self explanatary 7 = july...etc *mmmm dd yyyy dddd* when formatting dates we can tell Excel how much or what depth each part of the date should be shwon as so, dd mm yy would display 01 01 2009 (assuming its january 1st) using dd mmm yy would display 01 Jan 09....you get the idea! -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
Yes Simon I would like to keep the day as well. Thanks -- ALICE ------------------------------------------------------------------------ ALICE's Profile: http://www.thecodecage.com/forumz/member.php?userid=201 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
oh dear i am having a bit of trouble understanding this . i have to put in exactly as you have written it not the actual date. If i right click the cell that i put the above into i dont get FORMAT CELLS ETC in there .......i am doing something wrong but i dont know what ..........sorry -- ALICE ------------------------------------------------------------------------ ALICE's Profile: http://www.thecodecage.com/forumz/member.php?userid=201 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
ALICE;284502 Wrote: oh dear i am having a bit of trouble understanding this . i have to put in exactly as you have written it not the actual date. If i right click the cell that i put the above into i dont get FORMAT CELLS ETC in there .......i am doing something wrong but i dont know what ..........sorry Paste this *=DATE(YEAR(TODAY()),7,2)* (then press enter)in your first cell that has the date (change the month and day if need be) then copy across, all the cells you copied across to should now be highlighted, right click in the highlighted section then choose Format Cells (around half way down under Insert Comment in excel 2007) and follow the formatting i gave you, i could give back your workbook done for you, however, you still won't know how its done then and will face similar problems in the future :) -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
Alice, don't forget all your month sheets are the same structure so you can edit the sheets as a whole group to save you doing them one by one! -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
Alice, i have changed the formula slightly and made use of cell A1, A1 now houses a number (1 - 12) this is the number of the month, if you don't wish to see that number then right click Format CellsCustom and in the box type ;;; the number will always be there just not visible unless you select the cell. See the attached (your workbook), you need to complete the pattern for each month for the number of days in the month but it's nearly all done for you! +-------------------------------------------------------------------+ |Filename: WEEKLY CATS formula added.xls | |Download: http://www.thecodecage.com/forumz/attachment.php?attachmentid=102| +-------------------------------------------------------------------+ -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
excel
Have you tried EditReplace?
Gord Dibben MS Excel MVP On Wed, 25 Mar 2009 04:59:01 -0700, alice wrote: can someone please tell me how i can change the date at the beginning of each year and it will change all the way through my work for the rest of the year? months and weeks . |
Automatically advancing dates in cells for each new year?
I am really really sorry but I am just not understanding this ........when i put the =DATE(YEAR(TODAY()),7,2) into cell 1B and i am not sure how you mean copy along the rest .............I know I am trying the patience of a saint here but if you could just persevere with me a little longer maybe , just maybe I might get the hang of this........emb1:confused: thanks, Alice -- ALICE ------------------------------------------------------------------------ ALICE's Profile: http://www.thecodecage.com/forumz/member.php?userid=201 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
Hi Alice, i have made some changes and completed most of the sheets for you, check out post 17 here http://www.thecodecage.com/forumz/284615-post17.html download the attachment which is your workbook with the formulae inserted etc, you need to finish each sheet of to the end of each month (just a few days) that will help you understand what i've done! :) -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
Automatically advancing dates in cells for each new year?
Thankyou so very much Simon for all your help in this matter........really great Alison:) -- ALICE ------------------------------------------------------------------------ ALICE's Profile: http://www.thecodecage.com/forumz/member.php?userid=201 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=79420 |
All times are GMT +1. The time now is 06:54 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com