Hello folks, new to access...
My datalogger is writing to Access through 2 tables: FloatTable and StringTable.
The column format for FloatTable is:
Date, Tagname, Value (a number)
The column format for StringTable is:
Date, TagName, Value (a string)
I want to combine the two tables by making a column for each TagName.
For example, FloatTable looks like this:
5/31 5pm, data1, 123
5/31 5pm, data2, 456
5/31 5pm, data3, 789
and StringTable looks like this:
5/31 5pm, string1, "Thanks"
5/31 5pm, string2, "For Your"
5/31 5pm, string3, "Help"
I want to reorganize the data with appropriate field names so that it looks like this:
date | string1 | string2 | string3 | data1 | data2 | data3
-------------------------------------------------------------------------------------
5/31 5pm "Thanks" "For Your" "Help" 123 456 789