Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Good day, i have a problem where i have imported some data with dates and
time, the problem is i need to modify the time part of the date to a specific time like 18:00:00. The dates came in as follows 05/09/2008 18:00:00 10/10/2008 18:00:00 23/10/2008 18:00:00 05/12/2008 16:01:00 28/11/2008 18:00:00 05/12/2008 10:00:00 06/06/2008 18:00:00 27/06/2008 18:00:00 18/07/2008 12:35:00 22/08/2008 18:00:00 How can i change them to all have a finish time of 18:00:00? Please note that this is a sample from over 2,000 dates i have to modify. Help Please!!! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
incoming dates beeing in column A
=INT(A2)+0.75 and format result cells as date/time Regards, Stefi €žwhatzzup€ť ezt Ă*rta: Good day, i have a problem where i have imported some data with dates and time, the problem is i need to modify the time part of the date to a specific time like 18:00:00. The dates came in as follows 05/09/2008 18:00:00 10/10/2008 18:00:00 23/10/2008 18:00:00 05/12/2008 16:01:00 28/11/2008 18:00:00 05/12/2008 10:00:00 06/06/2008 18:00:00 27/06/2008 18:00:00 18/07/2008 12:35:00 22/08/2008 18:00:00 How can i change them to all have a finish time of 18:00:00? Please note that this is a sample from over 2,000 dates i have to modify. Help Please!!! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Stefi, but the entire date string is in on cell, all i need to do is
to change the time section, i can do this easily in search and replace but because they are random times i would have to know what they are in the first place to change them to 18:00:00 "Stefi" wrote: incoming dates beeing in column A =INT(A2)+0.75 and format result cells as date/time Regards, Stefi €žwhatzzup€ť ezt Ă*rta: Good day, i have a problem where i have imported some data with dates and time, the problem is i need to modify the time part of the date to a specific time like 18:00:00. The dates came in as follows 05/09/2008 18:00:00 10/10/2008 18:00:00 23/10/2008 18:00:00 05/12/2008 16:01:00 28/11/2008 18:00:00 05/12/2008 10:00:00 06/06/2008 18:00:00 27/06/2008 18:00:00 18/07/2008 12:35:00 22/08/2008 18:00:00 How can i change them to all have a finish time of 18:00:00? Please note that this is a sample from over 2,000 dates i have to modify. Help Please!!! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I see, if they are strings instead of Excel date/time values, then use this
formula: =LEFT(A2,11)&"18:00:00" You can overwrite the original values with Copy/PasteSpecial-Values, if necessary. Regards, Stefi €žwhatzzup€ť ezt Ă*rta: Thanks Stefi, but the entire date string is in on cell, all i need to do is to change the time section, i can do this easily in search and replace but because they are random times i would have to know what they are in the first place to change them to 18:00:00 "Stefi" wrote: incoming dates beeing in column A =INT(A2)+0.75 and format result cells as date/time Regards, Stefi €žwhatzzup€ť ezt Ă*rta: Good day, i have a problem where i have imported some data with dates and time, the problem is i need to modify the time part of the date to a specific time like 18:00:00. The dates came in as follows 05/09/2008 18:00:00 10/10/2008 18:00:00 23/10/2008 18:00:00 05/12/2008 16:01:00 28/11/2008 18:00:00 05/12/2008 10:00:00 06/06/2008 18:00:00 27/06/2008 18:00:00 18/07/2008 12:35:00 22/08/2008 18:00:00 How can i change them to all have a finish time of 18:00:00? Please note that this is a sample from over 2,000 dates i have to modify. Help Please!!! |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Stefi, it work a charm
"Stefi" wrote: I see, if they are strings instead of Excel date/time values, then use this formula: =LEFT(A2,11)&"18:00:00" You can overwrite the original values with Copy/PasteSpecial-Values, if necessary. Regards, Stefi €žwhatzzup€ť ezt Ă*rta: Thanks Stefi, but the entire date string is in on cell, all i need to do is to change the time section, i can do this easily in search and replace but because they are random times i would have to know what they are in the first place to change them to 18:00:00 "Stefi" wrote: incoming dates beeing in column A =INT(A2)+0.75 and format result cells as date/time Regards, Stefi €žwhatzzup€ť ezt Ă*rta: Good day, i have a problem where i have imported some data with dates and time, the problem is i need to modify the time part of the date to a specific time like 18:00:00. The dates came in as follows 05/09/2008 18:00:00 10/10/2008 18:00:00 23/10/2008 18:00:00 05/12/2008 16:01:00 28/11/2008 18:00:00 05/12/2008 10:00:00 06/06/2008 18:00:00 27/06/2008 18:00:00 18/07/2008 12:35:00 22/08/2008 18:00:00 How can i change them to all have a finish time of 18:00:00? Please note that this is a sample from over 2,000 dates i have to modify. Help Please!!! |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You are welcome! Thanks for the feedback!
Stefi €žwhatzzup€ť ezt Ă*rta: Thanks Stefi, it work a charm "Stefi" wrote: I see, if they are strings instead of Excel date/time values, then use this formula: =LEFT(A2,11)&"18:00:00" You can overwrite the original values with Copy/PasteSpecial-Values, if necessary. Regards, Stefi €žwhatzzup€ť ezt Ă*rta: Thanks Stefi, but the entire date string is in on cell, all i need to do is to change the time section, i can do this easily in search and replace but because they are random times i would have to know what they are in the first place to change them to 18:00:00 "Stefi" wrote: incoming dates beeing in column A =INT(A2)+0.75 and format result cells as date/time Regards, Stefi €žwhatzzup€ť ezt Ă*rta: Good day, i have a problem where i have imported some data with dates and time, the problem is i need to modify the time part of the date to a specific time like 18:00:00. The dates came in as follows 05/09/2008 18:00:00 10/10/2008 18:00:00 23/10/2008 18:00:00 05/12/2008 16:01:00 28/11/2008 18:00:00 05/12/2008 10:00:00 06/06/2008 18:00:00 27/06/2008 18:00:00 18/07/2008 12:35:00 22/08/2008 18:00:00 How can i change them to all have a finish time of 18:00:00? Please note that this is a sample from over 2,000 dates i have to modify. Help Please!!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
New date based on one date field minus minutes in another field | Excel Discussion (Misc queries) | |||
Linked date field in worksheet defaults a blank field as 1/0/1900 | Excel Worksheet Functions | |||
Converting a date field into a month-year only field | Excel Discussion (Misc queries) | |||
Changing a text field to a date field | New Users to Excel | |||
How to Join/concatenate a date field with a time field in Excel? | Excel Discussion (Misc queries) |