I have an access database with a single table that has 3 fields; Meter, Date/Time & KW. The data has multiple meters with data that is stored in 15 minute intervals.
We need to be able to pull the Max KW for each Meter on a 15 minute interval for a specified date range .
We also need to pull the Max KW of each Meter on a 60 minute average for each hour for a specified (input) date range.
Some of these meters will be totalized so would it be possible to totalize a selected group of Meter's Max KW based on the specified date range.
I've been able to create qryGetMeterNumber query pulling back the DISTINCT meter numbers. I then created a form fmGetKW and added combo boxes for Meter Number and 2 other combo boxes for the Start & End dates.
I then created a qryGetKW query to pull the meter, date/time & kw with the meter number tied to the form combo box of Meter Number.
Is there an easy way to multiply all of this or do I have to run each one separately? I'm used to generating basic queries and getting easy data, but I feel I'm over-thinking this whole process.
Thanks,
Keith