another time date issue

irvpost

New Member
Joined
Jul 28, 2011
Messages
5
i have several million records that need to be modified.
when i try to concatenate it always converts time to decimal if orignal D1 or E1 has a date but works if time only.

Original import from text-
Columns C= init date/time, D=Connect date/time, E=Disconnect time

column C1= date.time ( 11/24/11.23:59:18 )

column D1 = ( if same day as column C1 ) hh:mm:ss if different day date.time
( 23:58:42 ) or (11/25/11.00:00:04)

Column E1 = ( if same day as column D1 ) hh:mm:ss if different day date.time
( 23:58:42 ) or (11/25/11.00:00:04)

4 possible entries
10/20/11.23:59:56 10/21/11.00:00:11 00:00:40
10/21/11.00:00:06 - 00:00:42
10/21/11.00:00:15 00:00:30 00:00:44
10/20/11.23:54:32 23:54:34 10/21/11.00:00:44

I have inserted a blank column before both column D and E. I have used the formula in the new column D with success-
D1=IF(F3="-","",IF(ISERROR(SEARCH("*/*",F3,1)),CONCATENATE(LEFT(D3,(9)),F3),F3))

F1=IF(G2="-",IF(ISERROR(SEARCH("*/*",H2,1)),CONCATENATE(LEFT(D2,(9)),H2),H2),IF(ISERROR(SEARCH("*/*",H2,1)),CONCATENATE(LEFT(D2,(9)),H2),H2)).

i have tried other tricks her using +left(C1,9)+D1 no joy,
tried different formating dd/mm/yy.hh:mm:ss
this is for import to SQL later and i am not very familiar with all this.

thanks in advance!
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
got it-
IF(D2="-","",IF(ISERROR(SEARCH("*/*",D2,1)),LEFT(D2,8),LEFT(D2,8)))+IF(D2="-","",IF(ISERROR(SEARCH("*/*",D2,1)),LEFT(C2,8),LEFT(D2,8)))
 
Upvote 0

Forum statistics

Threads
1,216,773
Messages
6,132,630
Members
449,740
Latest member
tinkdrummer

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