Search TeachExcel.com
TeachExcel.com
TE
Teach Excel MS Office Tutorials Excel Consulting Services Excel Forum
Excel Video Tutorials Excel Tips Free Excel Macros Excel Help Resources Contact TeachExcel
Video Tutorials
  • Free Macros
  • Excel Help Directory
  • Excel 2007 Resources
  • Keyboard Shortcuts
  • Excel Forum
  • Contact/About

Macros
Excel Tutorials For Macros

Format Cells in The Short Date Number Format in Excel


Bookmark and Share

This free Excel macro applies the Short Date number format to a selection of cells in Excel. This number format displays the date like this: m/d/yyyy. The date is only in numbers and the month is the first number, day of month the second number, and the year represented in 4 digits is the last number.

This macro is a great piece of vba code to use when you need to format a large section of a worksheet or workbook in the Short Date number format.
Where to install the macro:  Module

Macro to Format Cells in The Short Date Number Format in Excel

Sub Format_Cell_Date_Short()

Selection.NumberFormat = "m/d/yyyy"

End Sub


Bookmark and Share


How to Install the Macro
  1. Select and copy the text from within the grey box above.

  2. Open the Microsoft Excel file in which you would like the Macro to function.

  3. Press "Alt + F11" - This will open the Visual Basic Editor - Works for all Excel Versions.  Or For other ways to get there, Click Here.

      For Excel Versions Prior to Excel 2007
      Go to Tools > Macros > Visual Basic Editor

      For Excel 2007
      Go to Office Button > Excel Options > Popular > Click Show Developer tab in the Ribbon. Then go to the Developer tab on the ribbon menu and on the far left Click Visual Basic

  4. On the new window that opens up, go to the left side where the vertical pane is located. Locate your Excel file; it will be called VBAProject (YOUR FILE'S NAME HERE) and click this.

  5. If the Macro goes in a Module, Click Here, otherwise continue to Step 8.

    1. Go to the menu at the top of the window and click Insert > Module
    2. Another window should have opened within the Visual Basic Editor's window. Within this new window, paste the macro code. Make sure to paste the code underneath the last line of anything else that is in the window.
    3. Go to Step 8.

  6. If the Macro goes in the Workbook or ThisWorkbook, Click Here, otherwise continue to Step 8.

    1. Directly underneath your excel file called VBAProject(your file's name here), click the Microsoft Excel Objects folder icon to open that drop-down list.
    2. Then, at the bottom of the list that appears, double-click the ThisWorkbook text.
    3. A new window inside the Visual Basic Editor's window will appear. In this new window, paste the code for the macro. Make sure to paste this code underneath the last line of any other code which is already in the window.
    4. Go to Step 8.

  7. If the Macro goes in the Worksheet Code, Click Here, otherwise continue to Step 8.

    1. Directly underneath your excel file called VBAProject(your file's name here), click the Microsoft Excel Objects folder icon to open that drop-down list.
    2. Within the list that appears you will see every worksheet that is in that excel file. They will be listed as such: Sheet1(NAME OF SHEET HERE) and under that will be Sheet2(NAME OF SHEET HERE). Select the sheet in which you want the macro to run and double-click that sheet.
    3. A new window inside the Visual Basic Editor's window will appear. In this new window, paste the code for the macro. Make sure to paste this code underneath the last line of any other code which is already in the window.
    4. Repeat steps b and c for every sheet you want the macro to work in. Putting the macro in one sheet will not enable it for any other sheets in the workbook.
    5. Go to Step 8.

  8. Close the Microsoft Visual Basic Editor window and save the Excel file. When you close the Visual Basic Editor window, the regular Excel window will not close.

  9. You are now ready to run the macro.



Similar Helpful Excel Resources

Default Number Format In Excel 2010 Worksheet Randomly Changed To A Date Format - Excel

View Content
I have been working in a worksheet with 10 tabs, and suddenly all of my numbers turned to long date format. I manually changed them all back to what they were. General, Currency, %, etc. but the default seems to be stuck in the long date format. When I create a new tab it is automatically all long dates. Very strange.
Oh, and the other weird thing is when I send it to other people, some people see the correct formats and when other's open it the numbers all go back to the long date format. VERY Frustrating.
Would love to get some advice.

Short Number Format - Excel

View Content
I am looking for a formula for a short number format. For example, $2,180802.35 ---> $2180K. Any ideas?

thanks to all!
C

Short Date Format - Excel

View Content
Hi folks,

Well I had a lovely data entry form working with DTpicker - and now I find despite thinking all installations of excel were the same across work (and at my new home station) they're apparerently not. DTpicker is not on my machine or on the machine primarily intended for use.

So I've decided I can't use controls at all - and have been trying to do a textbox based date. To save time, and give some hints, I want the date to be generated from todays date minus five years (give or take a few days) to get the student's approximate birthyear.

I've tried a number of code variations based on

'Textday = Format(Date, "dd/mm/yyy")

but they just keep giving errors.

My code as it stands is:
Code:

Private Sub CmbYear_Change()
Dim TextDate As String
TextDate = (CDate(Now))
    Dim YearsOff As Variant
YearsOff = CmbYear.Value + 5
txtDate.Value = TextDate - (YearsOff * 365)
End Sub


This works fine - I change the dropdown and it takes the years off correctly and in the uk format, BUT it gives me a time as well and I can't fix it.

Suggestions?

Ctrl-shift-3 To Short Date Format - Excel

View Content
Hi

I don't tend to post to forums since the oracle (Google) tends to answer most of my questions, but this one I have been wondering about for some years.
I love shortcut keys and hate the mouse. I therefore managed to configure my Excel such that I can do pretty much anything with the keyboard only and faster than using the mouse.

We use the date format yyyy/MM/dd for uploading data to a database. In my Regional Settings in Windows 7 (same with XP and Vista before) this is set up as the "Short Date" which is consistent with my country. This works fairly well. When I Press CTRL-1, TAB (once) to "Date" and hit ENTER, I get my date formatted in the correct format.

However, when I hit CTRL-SHIFT-3, the date format is dd-MMM-yy. I have checked my Regional Settings, as most posts suggest, but no luck. This format is not listed there at all. Where does Excel get this format? Is it hard coded? How can I configure Excel to use the short date format configured on my OS, or for that matter just yyyy/MM/dd?

I have in recent times found a workaround in the form of a Macro configured on my Alt-9 key:
Code:

Sub DateFormat()
    Selection.NumberFormat = "yyyy/mm/dd;@"
End Sub


I prefer to find a native solution because this will: Help me understand why this is not working Sooth my OCD a bit Release one of my precious Alt-# keys Allow me to set it up easier on new machines
Thanks in advance

Model_Citizen

Chart - X Axis Change To Short Date Format - Excel

View Content
Hi,

I have a chart that on the X axis I have dates. I want the date to show 1/6 instead of 1/6/2008. I changed the source data format to say 1/6 and I changed the pivot table to show 1/6 but the chart still says 1/6/2008.

Is there anyway to change this?

Thank you,
- Lior

Changing Date To Short Date Format And Sorting - Excel

View Content
Hi,

Im linked to a database through ODBC connection. When I pull the data in it give me this format "5/29/2008 12:00:05 AM", I am trying to change the format to " 5/29/2008" do I can group by date and have all the info fot that date round up.

I tried using DateA: Format([Date],"m/d/yyyy"), but it does not sort correctly and it feels like its not the correct way.

Please let me know how I can fix this.

Thank you,
- Lior

With / End With:- Changing Property Of The Variable To Be In Date Format Or Number Format - Excel

View Content
Hi,

Im currently using With / End With statements to apply formulas or link in data via a named range.

What I want to be able to do is change the property of what I'm linking in to be in date format.

For example I have the code
Set FiscalYrPrd = Range("AG7:AH" & .Range("AA" & .Rows.Count).End(xlUp).Row)
With FiscalYrPrd
.Formula = "=C7"
.Value = .Value
End With

my understanding if that your changing the property of the variable to be a formula and then a value, therefore is it possible to change the format property of the range so its in date format (dd/mm/yy)?

Any help would be greatly appreciated!
In addition - same request but in numerical format with zero d.p?

Many thanks in advance.

Rgd,

SPiercy

Format To Allow Date/number To Span Several Cells? - Excel

View Content
This should be a super-simple formatting question but I can't get it to work.
The columns are very small and I'd like to put in the date or a number and have it span into Column B from Column A.
This works easily with text. But it won't work for me with any number or a date.
I've looked though all the formatting options and can't figure it out.

Count Cells In A Range With Either Date Or Number Format - Excel

View Content
My first sheet contains the follwing cols.

DATE SL.# NAME AMOUNT NO. OF PYMNTS MADE 01/05/2005 1 ADAN 300
12/06/2006 2 BAND 200
14/07/2007 3 CHARGE 500

and my second sheet contains the date and voucher # of the monthly payments made.

SL.# NAME AMOUNT May-05 Jun-05 Jul-05 Aug-05 Sep-05 Oct-05 Nov-05


DATE VOUCHER# DATE VOUCHER# DATE VOUCHER# DATE VOUCHER# DATE VOUCHER# DATE VOUCHER# DATE VOUCHER# 1 ADAN 300 01/05/2008 12 02/06/2005 9 05/07/2005 4 05/08/2005 12 05/09/2005 2 06/10/2005 5 06/11/2005 1 2 BANH 200













3 CHARGE 500













4 DARLING 400














From the 2nd sheet I need to count the number of payments made by each person for which I only have the date and Vr# in the above format.

Could you help me in this please?

Thanks.




Count Cells In A Range With Either Date Or Number Format - Excel

View Content
Sheet 1 contains the following columns :
Date Sl# Name Amount No. of pymnts
15-8-09 1 Adam 300.00

Sheet 2 contains the following cols.
Sl# Name Amount Month 1 Month 2 .....Month 100
Date Vr.# Date Vr. # Date Vr.#......
1 Adam 300.00 15-8-09 5 10-10-09 ....

I want to count the number of payments made by 1 Adams.

How do I go about this?

Random Tutorials
Remove #N/A Error Result from Empty VLOOKUP() Formulas
(Intermediate)
Lookups With MATCH() and INDEX() Functions
(Intermediate)
Introduction to Making Formulas in Excel
(Easy)
IF Statement Introduction & Using Nested IF's
(Easy)
HLOOKUP() Function - Introduction
(Intermediate)
Function and Formulas Lookup in Excel
(Easy)
Submit Inquiry Here
  • Prices From $10
Name:*
E-mail:*
Request:*
The macro(s) on this page will be sent with the request.
Contact | Privacy Policy | Disclaimer
Copyright© 2012 TeachExcel.com