Cannot get cell to display value as date

nigelandrewfoster

Well-known Member
Joined
May 27, 2009
Messages
747
Hiya

Not come across this before. I wrote a line of code to copy a range in one workbook to a range in another, but the dates in the date column were replaced by their serial numbers.

As you can see, I didn't use PasteSpecial Paste:=xlvalues.

Now when I select one of these serial numbers it displays AS A DATE in the formula bar, but not on the sheet. Formatting the cell with a date format does not work.

Any ideas??



Code:
With ThisWorkbook.Worksheets("Incoming Orders")[B] 
        rngOrders.Resize(, 20).Copy .[a2][/B]
        rngOrders.Offset(, 23).Resize(, 8).Copy .[x2]
        rngOrders.Offset(, 33).Resize(, 4).Copy .[ah2]
    End With
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Sounds like that sheet is set to display formulas, not their results. Try pressing Ctrl+` to switch it back.
 
Upvote 0
Glad to help. :)
 
Upvote 0

Forum statistics

Threads
1,215,353
Messages
6,124,458
Members
449,161
Latest member
NHOJ

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