I have a data logger text file I would like to import into excel. This is one of 6 Data Loggers we have. So as you can imagine data adds up quickly.
The text file has comma delimited entries for a date and time, but the problem is that there are 5 logged data entries every 5 minutes. But each data entry is logged on a new line with the same date/time. This creates a problem when importing into excel as we end up with 5 times the lines when importing a textfile than we want.
Given the 5 minute recording interval and quarterly reporting, we are looking at 130,000 lin entries in a quarter. Double Excel's limitation of 65,000 lines. Yes, we're using Office 2000.
The File looks like this ... Date,Time,Tag,Value; (there are no column headers in the file)...
11/11/2010,12:00:00,41,12.767
11/11/2010,12:00:00,31,0.122
11/11/2010,12:00:00,1,0.4365
11/11/2010,12:00:00,21,1.3439
11/11/2010,12:00:00,11,0.230
Tag numbers would ideally be changed to a label.
41 = FLVOLTAGE
31 = FLTEMP
1 = FCDEPTH
21 = FLDEPTH
11 = FCTEMP
What I would like in excel is one row based on DATETIME (combined) with a seperate column for tag value.
DATETIME FCDEPTH FCTEMP FLDEPTH FLTEMP FLVOLTAGE
This would take us down to 26000 lines per quarter.
Ideally i would take this data from excel and import into an Access database. I was thinking one table per NODE. I would then use excel or access to generate the reports. Daily averages, min/max, monthly averages etc. for various tags.
Am I going about this the right way? I am thinking of Excel's line limitation and we'll be over it within 3 quarters if we store the data in excel.
Should Access even be used? Again, we're currently using Office 2000.
The text file has comma delimited entries for a date and time, but the problem is that there are 5 logged data entries every 5 minutes. But each data entry is logged on a new line with the same date/time. This creates a problem when importing into excel as we end up with 5 times the lines when importing a textfile than we want.
Given the 5 minute recording interval and quarterly reporting, we are looking at 130,000 lin entries in a quarter. Double Excel's limitation of 65,000 lines. Yes, we're using Office 2000.
The File looks like this ... Date,Time,Tag,Value; (there are no column headers in the file)...
11/11/2010,12:00:00,41,12.767
11/11/2010,12:00:00,31,0.122
11/11/2010,12:00:00,1,0.4365
11/11/2010,12:00:00,21,1.3439
11/11/2010,12:00:00,11,0.230
Tag numbers would ideally be changed to a label.
41 = FLVOLTAGE
31 = FLTEMP
1 = FCDEPTH
21 = FLDEPTH
11 = FCTEMP
What I would like in excel is one row based on DATETIME (combined) with a seperate column for tag value.
DATETIME FCDEPTH FCTEMP FLDEPTH FLTEMP FLVOLTAGE
This would take us down to 26000 lines per quarter.
Ideally i would take this data from excel and import into an Access database. I was thinking one table per NODE. I would then use excel or access to generate the reports. Daily averages, min/max, monthly averages etc. for various tags.
Am I going about this the right way? I am thinking of Excel's line limitation and we'll be over it within 3 quarters if we store the data in excel.
Should Access even be used? Again, we're currently using Office 2000.