Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have inherited a spreadsheet which has a column of dates but they are
displayed as numbers. When I click on the numbers, it shows them as date in the formula bar and when I go into format it shows as a custom date format. I've tried changing the format but they still show as numbers. It looks as if someone's created the following macro (not good at macros). What do I need to change to display the numbers as date? Sub CreateDistributionForm() ' ' CreateDistributionForm Macro ' Macro recorded and updated by MONUC-HQ-ADC COS ' ' Keyboard Shortcut: Ctrl+Shift+F ' idRow = ActiveCell.Row With Worksheets("Incoming") txtNum = Cells(idRow, 1).Value txtRef = Cells(idRow, 2).Value txtDate = Cells(idRow, 3).Value txtSubject = Cells(idRow, 4).Value txtFrom = Cells(idRow, 5).Value End With Worksheets("DistributionForm").Select Range("E2").Value = txtNum Range("A31").Value = txtRef Range("A30").Value = txtDate Range("D30") = txtSubject Range("A32") = txtFrom Range("A4") = Date ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True Worksheets("Incoming").Select End Sub -- Trainer |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
dates are formatted as custom date but still display as numbers | Excel Discussion (Misc queries) | |||
Numbers being Auto Date Formatted | Excel Discussion (Misc queries) | |||
how do I concatenate custom formatted numbers | Excel Worksheet Functions | |||
how do I concatenate custom formatted numbers | Excel Worksheet Functions | |||
Convert hard keyed/formatted numbers to dates | Excel Worksheet Functions |