Copy a text file to excel, but it wont apply date format

crakkus

New Member
Joined
May 28, 2019
Messages
14
Hello everyone,

I have looked everywhere and tried everything including VLng, Val, and CDate but nothing seems to want to change column B (Which has the date information) to a date. When I manually check the data, I get the macro to put the txt file data into a sheet. I then use =isnumber() to check if the date is a number, which it is not. But if i click in the formula bar then click away it immediately converts it to the date format. I cant seem to replicate this in using vba unless i manually click on each cell.

I am trying to import a txt file to a sheet, text to column conversion the data and then have the date in column B formatted to a date format in excel. However, column B is just a String even after I attempt to do a text to column conversion.

Any help would be appreciated!

The txt file is here: https://filebin.net/nzqrndyi2wi3bruw/Alt280.txt?t=gbz2ebty

VBA Code:
Sub Macro4()
'
' Macro4 Macro

Dim myFile As String
Dim Text As String
Dim textLine As Variant
Dim i As Long

'Open the text file
myFile = Application.GetOpenFilename("Text Files (*.txt), *.txt") ' Get the RAW Data file
    
'select the active sheet and clear its contents
   Sheets("Paste Data Here").Select
    ActiveSheet.Cells.ClearContents
    ActiveSheet.Cells(1, 1).Select

'Loop to pull data from the txt document
Open myFile For Input As #1
Do Until EOF(1)
    i = i + 1
    Line Input #1, textLine
    Range("A" & i).Value = textLine
       
Loop
Close #1

'Convert data based on a simicolon (;)
Columns(1).Select
    Selection.TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
        TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=False, _
        Semicolon:=True, Comma:=False, Space:=False, Other:=False, FieldInfo _
        :=Array(Array(1, 1), Array(2, 4), Array(3, 1), Array(4, 1), Array(5, 1), Array(6, 1), _
        Array(7, 1), Array(8, 1), Array(9, 1)), TrailingMinusNumbers:=True

'Go back to database sheet
        Sheets("Data").Select

End Sub
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
my Work blocks dropbox, urgh..

here is the text document info:

GASVISION_FILEVERSION;3;4.50
MEMO;dll version : 3.1.0.60;
MEMO;;
MEMO;;
MEMO;;
MEMO;;
MEMO;;
MEMO;;
MEMO;;
MEMO;;
MEMO;;
DECIMALSEPARATOR;.
DATESEPARATOR;/
SHORTDATEFORMAT;dd/MM/yyyy
TIMESEPARATOR;:
TIMEAMSTRING;AM
TIMEPMSTRING;PM
LONGTIMEFORMAT;h:mm:ss AMPM
SESSION_HEADER;Avg.;60;13/08/2019 6:36:48 AM;13/08/2019 2:41:42 PM;X-am 5600;DRLD0280;;Alt4;V7.1
GASTYPE;;NO2;NO;H2S;CO;CO2;
UNITNAME;;ppm;ppm;ppm;ppm;Vol%;
GAS_A1;;6.75;40.00;17.00;70.00;1.25;
GAS_A2;;50.00;200.00;100.00;2000.00;5.00;
RANGE;;50.00;200.00;100.00;2000.00;5.00;
SERIALNO;;;;;;;
PARTNO;;6812600;6811545;6813280;6813280;6812190;
CALDATE;;12/08/2019;12/08/2019;12/08/2019;12/08/2019;12/08/2019;
SENSORTYPE;;EC;EC;EC;EC;IR;
EVE;13/08/2019 6:36:48 AM;Instrument switch on
EVE;13/08/2019 6:36:51 AM;any channel warning changed (Channel 4, CO2 : 00000001, 01000001)
EVE;13/08/2019 6:36:52 AM;any channel warning changed (Channel 4, CO2 : 01000001, 00000005)
EVE;13/08/2019 6:36:57 AM;any channel warning changed (Channel 4, CO2 : 00000005, 00000001)
EVE;13/08/2019 6:37:49 AM;any channel warning changed (Channel 4, CO2 : 00000001, 00000002)
VAL;13/08/2019 6:37:50 AM;INV;INV;INV;INV;OVR;N/A;
VAL;13/08/2019 6:38:50 AM;0.00;0.0;0.0;0;0.06;N/A;
EVE;13/08/2019 6:39:50 AM;any channel warning changed (Channel 4, CO2 : 00000002, 00000000)
VAL;13/08/2019 6:39:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 6:40:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:41:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 6:42:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 6:43:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:44:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:45:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:46:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:47:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:48:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:49:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:50:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 6:51:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 6:52:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:53:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:54:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:55:50 AM;0.00;0.0;0.0;1;0.04;N/A;
VAL;13/08/2019 6:56:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 6:57:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 6:58:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 6:59:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:00:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:01:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:02:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:03:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:04:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:05:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:06:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:07:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:08:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:09:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:10:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:11:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:12:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:13:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:14:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:15:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 7:16:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 7:17:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:18:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:19:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:20:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:21:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:22:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:23:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:24:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:25:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:26:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 7:27:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 7:28:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 7:29:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 7:30:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 7:31:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 7:32:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 7:33:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 7:34:50 AM;0.00;0.0;0.0;1;0.07;N/A;
VAL;13/08/2019 7:35:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 7:36:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 7:37:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 7:38:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 7:39:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 7:40:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 7:41:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 7:42:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 7:43:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 7:44:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 7:45:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 7:46:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 7:47:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 7:48:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 7:49:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 7:50:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 7:51:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 7:52:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 7:53:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 7:54:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 7:55:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 7:56:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 7:57:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 7:58:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 7:59:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 8:00:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:01:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 8:02:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:03:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:04:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:05:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:06:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:07:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:08:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:09:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:10:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:11:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:12:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:13:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:14:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:15:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:16:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:17:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:18:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:19:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:20:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:21:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:22:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:23:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:24:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:25:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:26:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:27:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 8:28:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:29:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 8:30:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 8:31:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 8:32:50 AM;0.00;0.0;0.0;0;0.11;N/A;
VAL;13/08/2019 8:33:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 8:34:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 8:35:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:36:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:37:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:38:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 8:39:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 8:40:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 8:41:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:42:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:43:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:44:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 8:45:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 8:46:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 8:47:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:48:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:49:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:50:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:51:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:52:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:53:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:54:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 8:55:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 8:56:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 8:57:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 8:58:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 8:59:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 9:00:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 9:01:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 9:02:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 9:03:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 9:04:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 9:05:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 9:06:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 9:07:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:08:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 9:09:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:10:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 9:11:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:12:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:13:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:14:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:15:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:16:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:17:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:18:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:19:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:20:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:21:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:22:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:23:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:24:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:25:50 AM;0.00;0.0;0.0;0;0.09;N/A;
VAL;13/08/2019 9:26:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:27:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:28:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:29:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:30:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:31:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:32:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:33:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:34:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:35:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:36:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:37:50 AM;0.00;0.0;0.0;0;0.10;N/A;
VAL;13/08/2019 9:38:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:39:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:40:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:41:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:42:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:43:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:44:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:45:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:46:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:47:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 9:48:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:49:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:50:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:51:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 9:52:50 AM;0.00;0.0;0.0;0;0.11;N/A;
VAL;13/08/2019 9:53:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 9:54:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 9:55:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:56:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:57:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:58:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 9:59:50 AM;0.00;0.0;0.0;0;0.11;N/A;
VAL;13/08/2019 10:00:50 AM;0.00;0.0;0.0;0;0.16;N/A;
VAL;13/08/2019 10:01:50 AM;0.00;0.0;0.0;0;0.13;N/A;
VAL;13/08/2019 10:02:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:03:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:04:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:05:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:06:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:07:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:08:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:09:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:10:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:11:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:12:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:13:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:14:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:15:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:16:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:17:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:18:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:19:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:20:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:21:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:22:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:23:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:24:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:25:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:26:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:27:50 AM;0.00;0.0;0.0;0;0.08;N/A;
VAL;13/08/2019 10:28:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:29:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:30:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:31:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:32:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:33:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:34:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 10:35:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:36:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:37:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 10:38:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:39:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:40:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:41:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:42:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:43:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:44:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:45:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:46:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 10:47:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 10:48:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 10:49:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 10:50:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 10:51:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 10:52:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 10:53:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 10:54:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:55:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:56:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:57:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:58:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 10:59:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:00:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:01:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:02:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:03:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:04:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:05:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:06:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:07:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:08:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:09:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:10:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:11:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:12:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:13:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:14:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:15:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:16:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:17:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:18:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:19:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:20:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:21:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:22:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:23:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:24:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:25:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:26:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:27:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:28:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:29:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:30:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 11:31:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:32:50 AM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 11:33:50 AM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 11:34:50 AM;0.00;0.0;0.0;1;0.05;N/A;
VAL;13/08/2019 11:35:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:36:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:37:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:38:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:39:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:40:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:41:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:42:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:43:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:44:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:45:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:46:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:47:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:48:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:49:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:50:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:51:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:52:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:53:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:54:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:55:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:56:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:57:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 11:58:50 AM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 11:59:50 AM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:00:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:01:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:02:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:03:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:04:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:05:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:06:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:07:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:08:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:09:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:10:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:11:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:12:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:13:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:14:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:15:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:16:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:17:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:18:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:19:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:20:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:21:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:22:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:23:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:24:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:25:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:26:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:27:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:28:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:29:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:30:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:31:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:32:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:33:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:34:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:35:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:36:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:37:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:38:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:39:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:40:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 12:41:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 12:42:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:43:50 PM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 12:44:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:45:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:46:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:47:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:48:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:49:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:50:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:51:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:52:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:53:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:54:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:55:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:56:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:57:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:58:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 12:59:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:00:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:01:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:02:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:03:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:04:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:05:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:06:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:07:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:08:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:09:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:10:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:11:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:12:50 PM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 1:13:50 PM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 1:14:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:15:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:16:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:17:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:18:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:19:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:20:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:21:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:22:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:23:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:24:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:25:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:26:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:27:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:28:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:29:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:30:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:31:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:32:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:33:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:34:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:35:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:36:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:37:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:38:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:39:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:40:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 1:41:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:42:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:43:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:44:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:45:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:46:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:47:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:48:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:49:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:50:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:51:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:52:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:53:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 1:54:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:55:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:56:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:57:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:58:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 1:59:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:00:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:01:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:02:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:03:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:04:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:05:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:06:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:07:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:08:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:09:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:10:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 2:11:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:12:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:13:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:14:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:15:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:16:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:17:50 PM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 2:18:50 PM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 2:19:50 PM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 2:20:50 PM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 2:21:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:22:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:23:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:24:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:25:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:26:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:27:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:28:50 PM;0.00;0.0;0.0;0;0.07;N/A;
VAL;13/08/2019 2:29:50 PM;0.00;0.0;0.0;0;0.06;N/A;
VAL;13/08/2019 2:30:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:31:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:32:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:33:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 2:34:50 PM;0.00;0.0;0.0;0;0.05;N/A;
VAL;13/08/2019 2:35:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:36:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:37:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:38:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:39:50 PM;0.00;0.0;0.0;0;0.04;N/A;
VAL;13/08/2019 2:40:50 PM;0.00;0.0;0.0;0;0.04;N/A;
EVE;13/08/2019 2:41:42 PM;Instrument switch off
 
Upvote 0
Try something like:
VBA Code:
Sub Macro4()
  Dim myFile As String, Text As String, textLine As Variant, i As Long
  Dim r As Range, a
  
  'Open the text file
  'myFile = Application.GetOpenFilename("Text Files (*.txt), *.txt") ' Get the RAW Data file
  myFile = "C:\Users\Students\Dropbox\_Excel\FileReadWrite\ImportDataAndConvertDateColumn.txt"
      
  'select the active sheet and clear its contents
  With Sheets("Paste Data Here")
     .UsedRange.Cells.ClearContents
      
    'Loop to pull data from the txt document
    Open myFile For Input As #1
    Do Until EOF(1)
        i = i + 1
        Line Input #1, textLine
        .Range("A" & i).Value = textLine
    Loop
    Close #1
    
    'Convert data based on a simicolon (;)
    .Columns(1).TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
      TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=False, _
      Semicolon:=True, Comma:=False, Space:=False, Other:=False, FieldInfo _
      :=Array(Array(1, 1), Array(2, 4), Array(3, 1), Array(4, 1), Array(5, 1), Array(6, 1), _
      Array(7, 1), Array(8, 1), Array(9, 1)), TrailingMinusNumbers:=True
    
      'Convert column 2 to date values and formatted
      Set r = .Cells(.Rows.Count, "B").End(xlUp)
      Set r = .Range("B29", r)
      a = r.Value
      For i = 1 To UBound(a)
        a(i, 1) = CDate(a(i, 1))
      Next i
    End With
    r = a
    r.NumberFormat = "dd/mm/yyyyy h:mm:ss AM/PM"
    
'Go back to database sheet
  Sheets("Data").Select
End Sub
 
Upvote 0
Hi Kenneth,

Thank you for the code update. I try to run the macro and I get a Run-Time error '13': Type mismatch at the a(i,1)= CDate(a(i,1)) area.

Also, when i use f8 to cycle though the the "For" statement near the end it keeps cycling though the mismatch area and the "Next i" area.

Thoughts?
 
Upvote 0
You did this I guess.
VBA Code:
myFile = Application.GetOpenFilename("Text Files (*.txt), *.txt") ' Get the RAW Data file
  'myFile = "C:\Users\Students\Dropbox\_Excel\FileReadWrite\ImportDataAndConvertDateColumn.txt"
 
Upvote 0

Forum statistics

Threads
1,213,561
Messages
6,114,315
Members
448,564
Latest member
ED38

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