Creating a database for quotes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any way to create a Database designed to store quotes and them in a
random order when requested?
 
Is there any way to create a Database designed to store quotes and them in a
random order when requested?


Store all quotes in a table with an Autonumber or some other unique
numerical field.
Use the RND function to randomly select a number and then use a query
to retrieve the quote with that number assigned to it. How you display
it will dictate the best way to retrieve it.
 
Ok thanks, I've never really used Access since i was in school and that would
have been an older version, so I'm hoping that's not too difficult for an
amateur. Otherwise, I'll be back :)
 
I've managed to create a table with the various items. Can you tell me how to
do the latter part(using the RND Function and retrieving using a query)?

Thank You
 
I've managed to create a table with the various items. Can you tell me how to
do the latter part(using the RND Function and retrieving using a query)?

Thank You


How will you be displaying it? In a form like a program Quick Tips
message, message box, report?
This will determine the best way to do it.
 
Also, give a summary of the fields you are using and what their
datatypes are if it's not obvious.
 
??? ????????
storrboy said:
How will you be displaying it? In a form like a program Quick Tips
message, message box, report?
This will determine the best way to do it.
 
The Only fields are the Quote and the number of the quote, I would like it to
pop up in a message box if possible......

Thanks!
 

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

Back
Top