desertdirk
Programmer
I am relatively new at this, so I have been reading everything to the point I have gotten confused. My situation:
I want to create a utility billing application for an RV campground. Electric meters are read for each site, once a month and the tenant is billed. So, I have a table for tentants:
id (autonumber)
fname
lname
sitenumber
should I have one table for sites (there are 30 sites) or should I have a table for each site? (30 tables)since a reading will be done each month for each site. I am not sure where to add the meter readings for each month, certainly not to the tenants table.
And when calculating the monthly usage and amount to bill (current month reading-previous month reading * rate)should this be done in the query or on the form?
Thanks a bunch
I want to create a utility billing application for an RV campground. Electric meters are read for each site, once a month and the tenant is billed. So, I have a table for tentants:
id (autonumber)
fname
lname
sitenumber
should I have one table for sites (there are 30 sites) or should I have a table for each site? (30 tables)since a reading will be done each month for each site. I am not sure where to add the meter readings for each month, certainly not to the tenants table.
And when calculating the monthly usage and amount to bill (current month reading-previous month reading * rate)should this be done in the query or on the form?
Thanks a bunch