Need template or "how to" for tracking daily/hourly animal activit

J

Justin Cox

would like to track:
location
date
time
type of animal
temperature
moon phase
weather

i would like to be able to look at a chart to see best times/ temps/ etc...
 
S

Steve

How about the following tables:
TblLocation
LocationID
Location

TblAnimalType
AnimalTypeID
AnimalType

TblMoonPhase
MoonPhaseID
MoonPhase

TblWeather
WeatherID
Weather

** You ought to consider breaking this table down to several weather
conditions such as TblPrecipitation which includes None, Raining and
Snowing.

TblObservation
ObservationID
ObservationDate
ObservationTime
LocationID
AnimalTypeID
Temperature
WeatherID
Note

Steve
(e-mail address removed)
 
J

Justin Cox

is there a way to show which hours, temp, etc?
Any templates that you know of?
 
S

Steve

If you only want to allow selecting certain hours, create a table of the
hours and use that table as the row source of a combobox. Same for
temperature.

You aren't going to find any templates for what you want to do!

Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top