Access and Statistics

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

Guest

I am an Access Novice...

I have a database of 100,000.00 records. Can Access select a sample from
this dataset that will enable me to perform lognormal statistical analysis ?

What sql can I use to selest the sample data ?

Thank you in advance.
 
if you were to use Access Data Projects; keep your data in SQL Server--
then you could use 'Analysis Services'

SSAS has some GREAT statistical functions

MDB is for lamers

-Susie
 
Susie;

Analysis Services is hard for beginners-- but the best route to go.

Do you have any resources for Doug?

-Tom
 
ah, my favorite, a .00 records statistician. I love precision. (:-<)

you can obtain a random selection of records using WHERE RND([yourfield])
.whatever
you have to use a dummy positive field to ensure that the RND function gets
called for each record, or sort the table on RND([yourfield]) and select TOP
N.
 

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