Date format changes when inserting rows

falcios

Active Member
Joined
Aug 30, 2006
Messages
279
Office Version
  1. 2019
Platform
  1. Windows
I selected a column and formatted it so that the date displays ex. 3/10/09. When I insert rows and type in the date it displays as 3/10/2009. Why does the format change? How can I get it so I don't have to format the dates individually.

Thanks.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
when you insert rows its a new row so the format is new, if you need to insert a new row copy one of the rows that black but has your format on it then insert the copyed row in to your worksheet. or you can record a macro to copy a row then just insert it were you need it. like this

Code:
Sub Macro1()
Dim selectedRange As Range
    Rows("17:17").Select
    Selection.Copy
    
End Sub

or you can record a macro to select the column and reformat it each time you insert a new row

Code:
Sub Macro2()
    Columns("G:G").Select
    Selection.NumberFormat = "m/d/yy"
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,795
Members
449,048
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top