I have a table of every reading of every electric meter. This history goes back a couple of years.
Field1 = date
Field2 = Meter#
Field3 = Single digit code identifying method of reading
The same meter is read multiple times in a year. The number of readings in the database is 1 or more (no limit).
I want to create a single line of text in 1 field that shows a history of the reading method of a particular meter.
Reading method translations
A=Radio Frequency
B=Manual
C=Not Read
X=Estimated
Here's a sample of what I would like to see
Meter# History
46521 ABAAAXAAB
42137 XAAACA
40037 C
41920 BAA
40059 AAABAAA
The 1st character in the history represents the most recent reading method, and each character to the right represents an older reading.
There is no limit to the number of readings, but I may want to limit the history to a maximum # of readings.
I tried creating a Crosstab query, but could only get it to give me counts of each unique reading method for each meter.
Any suggestions would be greatly appreciated.
Field1 = date
Field2 = Meter#
Field3 = Single digit code identifying method of reading
The same meter is read multiple times in a year. The number of readings in the database is 1 or more (no limit).
I want to create a single line of text in 1 field that shows a history of the reading method of a particular meter.
Reading method translations
A=Radio Frequency
B=Manual
C=Not Read
X=Estimated
Here's a sample of what I would like to see
Meter# History
46521 ABAAAXAAB
42137 XAAACA
40037 C
41920 BAA
40059 AAABAAA
The 1st character in the history represents the most recent reading method, and each character to the right represents an older reading.
There is no limit to the number of readings, but I may want to limit the history to a maximum # of readings.
I tried creating a Crosstab query, but could only get it to give me counts of each unique reading method for each meter.
Any suggestions would be greatly appreciated.