The only reason I ask is that I tried the form approach but I just kept
adding records to the table. What I am trying to do is at the beginning of
wach day input the US/CAN exchange rate for use in query calcs. So I only
ever want one value in my table at all times.
An alternative is to use an unbound textbox on your form.
If you do want the single-record table, use TWO fields: an Integer
Primary Key with a value of 1 and a validation rule of =1, and the
exchange rate.
You might want to consider KEEPING all the exchange rates for use with
historic queries; just use the date as the Primary Key.
John W. Vinson[MVP]