Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have a date and time in a single cell in a worksheet, with the format "dd/mm/yy hh:mm". I have written a function to determine what crew is working at this particular time. However, VBA has the date format as mm/dd/yy and this seems to give me the wrong answers. How can I force VBA to interpret my date format correctly? The function code is as follows: Public Function Crew(DTS) Dim BaseDTS, CrewShifts1, CrewShifts2 Dim ShiftsSince, LookupShift BaseDTS = #5/2/2005# + 8 / 24 'May 2, 2005 08:00 ShiftsSince = (DTS - BaseDTS) * 2 etc etc End Function TIA, Derek |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date Calculations | Excel Discussion (Misc queries) | |||
Date Calculations before date entered | Excel Discussion (Misc queries) | |||
Date calculations | Excel Discussion (Misc queries) | |||
Date calculations | Excel Discussion (Misc queries) | |||
Date Calculations | Excel Programming |