Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Context: I'm entering prior year data into Excel.

Every time I type in the date in the date column ("9/16" for September 16th), Excel automatically formats it to "9/16/12", where 12 is 2012, the current year.

I'm entering data from last year in the current year 2012. I don't want to type the "11" for 2011. I want Excel to automatically populate it as it does with 2012, and as it did on December 31st.

The simplest fix is to set the clock in Windows back to any time in 2011, but that tends to muck with the network which wants to set me back and complains about my network password being out of date, etc.

I prefer the date to reside in a single column, so tabbing to alternate columns for day/month/year is not an option for me.

One would think this is a simple fix, but a couple hours searching and my Google-fu is failing me.

share|improve this question
you could'v typed a lot of /11'ns in a couple off hours, maybe a autohotkey script can help you to do this trick. – Arnoldiusss Jan 5 '12 at 15:58
How about four columns: first type the month, second type the day, and have the third as "11" that you can just autofill down the entire column. The fourth column can be a formula such as '=B2&"/"&C2&"/"&D2'. Worth a shot? – bozdoz Jan 5 '12 at 16:07
2  
@bozdoz: then you'd better use the DATE formula which will create a date – JMax Jan 5 '12 at 16:11
@JMax Even better – bozdoz Jan 5 '12 at 16:17
Yes, it was a couple hours (over the course of a few days, in-between adding more data to the sheet and doing other things entirely). In the end, I gave up and came here. I feel I did do my due diligence before asking, otherwise I'd have expected a "lmgtfy" answer. – JoshDM Jan 6 '12 at 5:29

4 Answers

up vote 6 down vote accepted

A quick fix is to just enter 9/16 and let Excel change it to 9/16/12. Then when you are all done entering your dates, in a new column, enter the formula =A1-365, and just copy the formula all the way down, assuming column A contains the dates that you entered.

One watch-out on this: 2012 is a leap year, so for any dates after Feb 28 that you enter, your formula will need to be =A1-365.25 or else your dates will be off by one day. It doesn't have to be 365.25, just something larger than 365 and smaller than 366.

This works because no matter what the date format in the cell is, Excel stores the actual date as the number of elapsed days since January 0, 1900. (Yeah, January 0 isn't a real date, but Excel thinks it is.)

share|improve this answer
Thanks; this seems the simplest fix and has some good information on what is stored in the cell. – JoshDM Jan 6 '12 at 5:25

What you found is correct, you cannot change the default Excel parameter about date. Apart from changing the system date, you can use a worksheet event formula :

Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [A:A]) Is Nothing Then Exit Sub
If IsDate(Target) Then
    Application.EnableEvents = False
    Target.Value = DateSerial(2011, Month(Target), Day(Target))
    Application.EnableEvents = True
End If
End Sub
share|improve this answer
Thanks; this solution is a bit more complex for my tastes than the other offered solution. – JoshDM Jan 6 '12 at 5:24

Thanks for the answers - I was having this same issue. I wanted to make a slight amendment to Stewbob's solution. Like the OP I needed to enter data from last year without having to type "/11" each time, but not all of the dates I was entering were in 2011 (I was also entering dates in 2009 and 2010, for which I would have to manually enter the year anyway even if I hadn't procrastinated in 2011!). I would not want dates in '09-'10 to be set back by a year along with the 2011 dates. My solution was to set up a second adjacent column with the following formula. Let's say I'm typing dates into column A and made column B my "corrected" column; the formula in column B is: =IF(A1>40908,IF(A1>40967,A1-366,A1-365),A1) This way, dates before 2011 will not be corrected, and we also account for the fact that 2012 is a leap year so any dates after 2/28 will be set back by 366 days instead of 365. So now, I can type any dates as if it's still 2011. This is nice if you can't change the date/time in Windows because your institution doesn't give you administrative privileges on your own #$%! workstation. It may be a few days after the original post but I hope this helps.

share|improve this answer
Thank you! .... – JoshDM Jan 10 '12 at 22:09
  • Highlight the column of dates in your Excel spreadsheet where you wish to change the year.
  • In the toolbar, select Format, select Cells, and under Category, select Date. In the column of options it offers for date format, select the date format that shows month spelled out, day number, comma, space, 4-digit year (i.e.: January 31, 2011). Be sure there is a space before the 4-digit year.
  • Find the "Replace" command under Edit menu (location varies depending upon Mac or PC and Excel version #)
  • In the Replace window, in the field for the data you wish to replace, enter that 4-digit year that you want to replace. In the other field for the data you wish to replace the old data with, enter the correct year. Click the button in that window for "Replace All".
  • Your highlighted column in the spreadsheet will now have changed all of the 4-digit years to the new number.
  • If you didn't wish to change all of those years in that column, I think you could have just left some of them un-highlighted, and they would have been skipped over.
  • Afterward, you can highlight the column, go back into Format, Cell, Date, and reset the date format back to whatever you like, such as 1/31/11.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.