473,387 Members | 1,606 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Frequency Distribution question

Hello,
I think the question i have is fairly straightforward, but I can't seem to
replicate the old SAS frequency procedure when I try to accomplish this in
MS Access.

anyway, i have about 10 questions on a survey that have a possible response
range from 0-4.

what I would like to do is simply show that for each question we had x
amount of responses in each category, which amount to x percentage of all
responses:

so if we have the following responses to 5 surveys for question 1
1
2
2
3
4

the frequency distribution would look like:
1 1 20%
2 2 40%
3 1 20%
4 1 20%

I can get this (or at least the frequency) for one question by using a query
and selecting the field twice, then using groupby in the first column and
count in the second column. But if I try to do this for the next field in
the next 2 columns it screws everything up.

can someone help me?
thanks,
Tim Brooks
Nov 12 '05 #1
11 4336
Hi Tim,

I took this on as a challenge ... I like to do that occasionally as an
opportunity to learn. :)

Here's what I came up with, although I'm sure that someone will have a
better idea.
It's generally not a good idea to store calculated values, so I think the
correct method to accomplish this task might be to use a crosstab query
(which I suck at.)

My plan calls for 3 tables.
tblQuestions holds your 10 questions.
tblResponses holds the 100 responses to each of those questions. (one to
many join)
tblResults stores the counts the responses, and the percentage calculations

I did enter 10 questions into tblQuestions, but was too lazy to enter 100
random responses, so I made up some code to do that for me.
After I had the response data, I wrote some more code to write the
calculated data to tblResults.

My code runs from two command buttons on an unbound form, and the results
are displayed in a datasheet-style subform called "sbfResults", which is
based on tblResults.

Hopefully the above will help you to understand how this code works:
************************************************** **********
Option Compare Database
Option Explicit

Private Sub cmdRandomResponse_Click()
'We have 10 questions, and want 100 random responses to each question

Dim MyDB As DAO.Database
Set MyDB = CurrentDb

Dim rstQ As DAO.Recordset
Dim rstR As DAO.Recordset

Set rstQ = MyDB.OpenRecordset("tblQuestions", dbOpenTable)
Set rstR = MyDB.OpenRecordset("tblResponses", dbOpenDynaset)

Dim i As Integer
Dim MyQ As Long
Dim MyR As Long

With rstQ
.MoveLast
.MoveFirst
Do Until .EOF 'Here are the 10 Questions
MyQ = !QNbr 'Both tables have a QNbr field (long integer --- 1 to
many)
With rstR
For i = 0 To 99 'Here is where the 100 random responses are
created
.AddNew
!QNbr = MyQ
'Int((upperbound - lowerbound + 1) * Rnd + lowerbound)
!Response = Int((4 - 0 + 1) * Rnd + 0)
.Update
Next i
End With
.MoveNext
Loop

.Close
End With

rstR.Close

Set rstR = Nothing
Set rstQ = Nothing
Set MyDB = Nothing
End Sub
************************************************** **********
Private Sub cmdTabulateResults_Click()

'Now we have 10 questions, 100 responses to each question, and want to
tabulate the results
Dim MyDB As DAO.Database
Set MyDB = CurrentDb

Dim rstQ As DAO.Recordset
Dim rstResults As DAO.Recordset

Set rstQ = MyDB.OpenRecordset("tblQuestions", dbOpenTable)
Set rstResults = MyDB.OpenRecordset("tblResults", dbOpenDynaset)

Dim i As Integer
Dim MyQ As Long
Dim MyR As Long

Dim MyCountQ As Long
Dim MyCountR As Long
Dim MyPcnt

Dim MyMin
Dim MyMax

'Clear out the results table. The code below re-populates it with current
results.
MyDB.Execute "DELETE tblResults.* FROM tblResults;", dbFailOnError

With rstQ
.MoveLast
.MoveFirst
Do Until .EOF 'Here are the Questions ... Loop thru them one at a time.
MyQ = !QNbr
With rstResults
'There should be 4 possible responses to each question, but who
knows for sure? This checks.
MyMin = DMin("Response", "tblResponses", "([QNbr] = " & MyQ &
")")
MyMax = DMax("Response", "tblResponses", "([QNbr] = " & MyQ &
")")

For i = MyMin To MyMax
.AddNew
!QuestionNumber = MyQ
!Response = i
MyCountQ = DCount("QNbr", "tblResponses", "([QNbr] = " & MyQ
& ")")
MyCountR = DCount("Response", "tblResponses", "([QNbr] = " &
MyQ & ") And ([Response] = " & i & ")")

MyPcnt = (MyCountR / MyCountQ)
!ResponsePercent = MyPcnt
!ResponseCount = MyCountR
.Update
Next i
End With
.MoveNext
Loop

.Close
End With
Set rstResults = Nothing
Set rstQ = Nothing
Set MyDB = Nothing

Me.Refresh 'I have a subform based on tblResults, so that I can immediately
display the results

End Sub
************************************************** **********
--
HTH,
Don
=============================
Use My*****@Telus.Net for e-mail
Disclaimer:
Professional PartsPerson
Amateur Database Programmer {:o)

I'm an Access97 user, so all posted code
samples are also Access97- based
unless otherwise noted.

Do Until SinksIn = True
File/Save, <slam fingers in desk drawer>
Loop

================================
"NC Tim" <tb**************@mindspring.com> wrote in message
news:u2******************@newsread2.news.atl.earth link.net...
Hello,
I think the question i have is fairly straightforward, but I can't seem to
replicate the old SAS frequency procedure when I try to accomplish this in
MS Access.

anyway, i have about 10 questions on a survey that have a possible response range from 0-4.

what I would like to do is simply show that for each question we had x
amount of responses in each category, which amount to x percentage of all
responses:

so if we have the following responses to 5 surveys for question 1
1
2
2
3
4

the frequency distribution would look like:
1 1 20%
2 2 40%
3 1 20%
4 1 20%

I can get this (or at least the frequency) for one question by using a query and selecting the field twice, then using groupby in the first column and
count in the second column. But if I try to do this for the next field in
the next 2 columns it screws everything up.

can someone help me?
thanks,
Tim Brooks

Nov 12 '05 #2
Don,

My wife is considering a small survey at work, and is looking for options;
if possible, I would certainly appreciate an example of your database to
pass along to her.

Cheers,

Dave (db*****@ns.sympatico.ca)
(Please Zip file, or change extension, i.e. mydatabase.txt)

"Don Leverton" <le****************@telusplanet.net> wrote in message
news:36Agc.49382$aD.12596@edtnps89...
Hi Tim,

I took this on as a challenge ... I like to do that occasionally as an
opportunity to learn. :)

Here's what I came up with, .......>

Nov 12 '05 #3
Don,

My wife is considering a small survey at work, and is looking for options;
if possible, I would certainly appreciate an example of your database to
pass along to her.

Cheers,

Dave (db*****@ns.sympatico.ca)
(Please Zip file, or change extension, i.e. mydatabase.txt)

"Don Leverton" <le****************@telusplanet.net> wrote in message
news:36Agc.49382$aD.12596@edtnps89...
Hi Tim,

I took this on as a challenge ... I like to do that occasionally as an
opportunity to learn. :)

Here's what I came up with, .......>

Nov 12 '05 #4
thanks for an elegant response...

"Don Leverton" <le****************@telusplanet.net> wrote in message
news:36Agc.49382$aD.12596@edtnps89...
Hi Tim,

I took this on as a challenge ... I like to do that occasionally as an
opportunity to learn. :)

Here's what I came up with, although I'm sure that someone will have a
better idea.
It's generally not a good idea to store calculated values, so I think the
correct method to accomplish this task might be to use a crosstab query
(which I suck at.)

My plan calls for 3 tables.
tblQuestions holds your 10 questions.
tblResponses holds the 100 responses to each of those questions. (one to
many join)
tblResults stores the counts the responses, and the percentage calculations
I did enter 10 questions into tblQuestions, but was too lazy to enter 100
random responses, so I made up some code to do that for me.
After I had the response data, I wrote some more code to write the
calculated data to tblResults.

My code runs from two command buttons on an unbound form, and the results
are displayed in a datasheet-style subform called "sbfResults", which is
based on tblResults.

Hopefully the above will help you to understand how this code works:
************************************************** **********
Option Compare Database
Option Explicit

Private Sub cmdRandomResponse_Click()
'We have 10 questions, and want 100 random responses to each question

Dim MyDB As DAO.Database
Set MyDB = CurrentDb

Dim rstQ As DAO.Recordset
Dim rstR As DAO.Recordset

Set rstQ = MyDB.OpenRecordset("tblQuestions", dbOpenTable)
Set rstR = MyDB.OpenRecordset("tblResponses", dbOpenDynaset)

Dim i As Integer
Dim MyQ As Long
Dim MyR As Long

With rstQ
.MoveLast
.MoveFirst
Do Until .EOF 'Here are the 10 Questions
MyQ = !QNbr 'Both tables have a QNbr field (long integer --- 1 to
many)
With rstR
For i = 0 To 99 'Here is where the 100 random responses are
created
.AddNew
!QNbr = MyQ
'Int((upperbound - lowerbound + 1) * Rnd + lowerbound)
!Response = Int((4 - 0 + 1) * Rnd + 0)
.Update
Next i
End With
.MoveNext
Loop

.Close
End With

rstR.Close

Set rstR = Nothing
Set rstQ = Nothing
Set MyDB = Nothing
End Sub
************************************************** **********
Private Sub cmdTabulateResults_Click()

'Now we have 10 questions, 100 responses to each question, and want to
tabulate the results
Dim MyDB As DAO.Database
Set MyDB = CurrentDb

Dim rstQ As DAO.Recordset
Dim rstResults As DAO.Recordset

Set rstQ = MyDB.OpenRecordset("tblQuestions", dbOpenTable)
Set rstResults = MyDB.OpenRecordset("tblResults", dbOpenDynaset)

Dim i As Integer
Dim MyQ As Long
Dim MyR As Long

Dim MyCountQ As Long
Dim MyCountR As Long
Dim MyPcnt

Dim MyMin
Dim MyMax

'Clear out the results table. The code below re-populates it with current
results.
MyDB.Execute "DELETE tblResults.* FROM tblResults;", dbFailOnError

With rstQ
.MoveLast
.MoveFirst
Do Until .EOF 'Here are the Questions ... Loop thru them one at a time. MyQ = !QNbr
With rstResults
'There should be 4 possible responses to each question, but who knows for sure? This checks.
MyMin = DMin("Response", "tblResponses", "([QNbr] = " & MyQ &
")")
MyMax = DMax("Response", "tblResponses", "([QNbr] = " & MyQ &
")")

For i = MyMin To MyMax
.AddNew
!QuestionNumber = MyQ
!Response = i
MyCountQ = DCount("QNbr", "tblResponses", "([QNbr] = " & MyQ & ")")
MyCountR = DCount("Response", "tblResponses", "([QNbr] = " & MyQ & ") And ([Response] = " & i & ")")

MyPcnt = (MyCountR / MyCountQ)
!ResponsePercent = MyPcnt
!ResponseCount = MyCountR
.Update
Next i
End With
.MoveNext
Loop

.Close
End With
Set rstResults = Nothing
Set rstQ = Nothing
Set MyDB = Nothing

Me.Refresh 'I have a subform based on tblResults, so that I can immediately display the results

End Sub
************************************************** **********
--
HTH,
Don
=============================
Use My*****@Telus.Net for e-mail
Disclaimer:
Professional PartsPerson
Amateur Database Programmer {:o)

I'm an Access97 user, so all posted code
samples are also Access97- based
unless otherwise noted.

Do Until SinksIn = True
File/Save, <slam fingers in desk drawer>
Loop

================================
"NC Tim" <tb**************@mindspring.com> wrote in message
news:u2******************@newsread2.news.atl.earth link.net...
Hello,
I think the question i have is fairly straightforward, but I can't seem to replicate the old SAS frequency procedure when I try to accomplish this in MS Access.

anyway, i have about 10 questions on a survey that have a possible

response
range from 0-4.

what I would like to do is simply show that for each question we had x
amount of responses in each category, which amount to x percentage of all responses:

so if we have the following responses to 5 surveys for question 1
1
2
2
3
4

the frequency distribution would look like:
1 1 20%
2 2 40%
3 1 20%
4 1 20%

I can get this (or at least the frequency) for one question by using a

query
and selecting the field twice, then using groupby in the first column and count in the second column. But if I try to do this for the next field in the next 2 columns it screws everything up.

can someone help me?
thanks,
Tim Brooks


Nov 12 '05 #5
thanks for an elegant response...

"Don Leverton" <le****************@telusplanet.net> wrote in message
news:36Agc.49382$aD.12596@edtnps89...
Hi Tim,

I took this on as a challenge ... I like to do that occasionally as an
opportunity to learn. :)

Here's what I came up with, although I'm sure that someone will have a
better idea.
It's generally not a good idea to store calculated values, so I think the
correct method to accomplish this task might be to use a crosstab query
(which I suck at.)

My plan calls for 3 tables.
tblQuestions holds your 10 questions.
tblResponses holds the 100 responses to each of those questions. (one to
many join)
tblResults stores the counts the responses, and the percentage calculations
I did enter 10 questions into tblQuestions, but was too lazy to enter 100
random responses, so I made up some code to do that for me.
After I had the response data, I wrote some more code to write the
calculated data to tblResults.

My code runs from two command buttons on an unbound form, and the results
are displayed in a datasheet-style subform called "sbfResults", which is
based on tblResults.

Hopefully the above will help you to understand how this code works:
************************************************** **********
Option Compare Database
Option Explicit

Private Sub cmdRandomResponse_Click()
'We have 10 questions, and want 100 random responses to each question

Dim MyDB As DAO.Database
Set MyDB = CurrentDb

Dim rstQ As DAO.Recordset
Dim rstR As DAO.Recordset

Set rstQ = MyDB.OpenRecordset("tblQuestions", dbOpenTable)
Set rstR = MyDB.OpenRecordset("tblResponses", dbOpenDynaset)

Dim i As Integer
Dim MyQ As Long
Dim MyR As Long

With rstQ
.MoveLast
.MoveFirst
Do Until .EOF 'Here are the 10 Questions
MyQ = !QNbr 'Both tables have a QNbr field (long integer --- 1 to
many)
With rstR
For i = 0 To 99 'Here is where the 100 random responses are
created
.AddNew
!QNbr = MyQ
'Int((upperbound - lowerbound + 1) * Rnd + lowerbound)
!Response = Int((4 - 0 + 1) * Rnd + 0)
.Update
Next i
End With
.MoveNext
Loop

.Close
End With

rstR.Close

Set rstR = Nothing
Set rstQ = Nothing
Set MyDB = Nothing
End Sub
************************************************** **********
Private Sub cmdTabulateResults_Click()

'Now we have 10 questions, 100 responses to each question, and want to
tabulate the results
Dim MyDB As DAO.Database
Set MyDB = CurrentDb

Dim rstQ As DAO.Recordset
Dim rstResults As DAO.Recordset

Set rstQ = MyDB.OpenRecordset("tblQuestions", dbOpenTable)
Set rstResults = MyDB.OpenRecordset("tblResults", dbOpenDynaset)

Dim i As Integer
Dim MyQ As Long
Dim MyR As Long

Dim MyCountQ As Long
Dim MyCountR As Long
Dim MyPcnt

Dim MyMin
Dim MyMax

'Clear out the results table. The code below re-populates it with current
results.
MyDB.Execute "DELETE tblResults.* FROM tblResults;", dbFailOnError

With rstQ
.MoveLast
.MoveFirst
Do Until .EOF 'Here are the Questions ... Loop thru them one at a time. MyQ = !QNbr
With rstResults
'There should be 4 possible responses to each question, but who knows for sure? This checks.
MyMin = DMin("Response", "tblResponses", "([QNbr] = " & MyQ &
")")
MyMax = DMax("Response", "tblResponses", "([QNbr] = " & MyQ &
")")

For i = MyMin To MyMax
.AddNew
!QuestionNumber = MyQ
!Response = i
MyCountQ = DCount("QNbr", "tblResponses", "([QNbr] = " & MyQ & ")")
MyCountR = DCount("Response", "tblResponses", "([QNbr] = " & MyQ & ") And ([Response] = " & i & ")")

MyPcnt = (MyCountR / MyCountQ)
!ResponsePercent = MyPcnt
!ResponseCount = MyCountR
.Update
Next i
End With
.MoveNext
Loop

.Close
End With
Set rstResults = Nothing
Set rstQ = Nothing
Set MyDB = Nothing

Me.Refresh 'I have a subform based on tblResults, so that I can immediately display the results

End Sub
************************************************** **********
--
HTH,
Don
=============================
Use My*****@Telus.Net for e-mail
Disclaimer:
Professional PartsPerson
Amateur Database Programmer {:o)

I'm an Access97 user, so all posted code
samples are also Access97- based
unless otherwise noted.

Do Until SinksIn = True
File/Save, <slam fingers in desk drawer>
Loop

================================
"NC Tim" <tb**************@mindspring.com> wrote in message
news:u2******************@newsread2.news.atl.earth link.net...
Hello,
I think the question i have is fairly straightforward, but I can't seem to replicate the old SAS frequency procedure when I try to accomplish this in MS Access.

anyway, i have about 10 questions on a survey that have a possible

response
range from 0-4.

what I would like to do is simply show that for each question we had x
amount of responses in each category, which amount to x percentage of all responses:

so if we have the following responses to 5 surveys for question 1
1
2
2
3
4

the frequency distribution would look like:
1 1 20%
2 2 40%
3 1 20%
4 1 20%

I can get this (or at least the frequency) for one question by using a

query
and selecting the field twice, then using groupby in the first column and count in the second column. But if I try to do this for the next field in the next 2 columns it screws everything up.

can someone help me?
thanks,
Tim Brooks


Nov 12 '05 #6
I made a table, tblResponses, containing the fields to hold the data,
2 queries to calculate the frequencies and a third query to present
the data in the form: QNumber, Response, ResponseFrequency,
ResponsePercent.

tblResponses:
ResponsesRID (an autonumber field as primary key)
ResponsesQNumber (the question number)
ResponsesResponseNumber (1-4 I guess)

qryResponseFrequency:
(counts frequency of each response to each question)
SELECT tblResponses.ResponsesQNumber,
tblResponses.ResponsesResponseNumber,
Count(tblResponses.ResponsesQNumber) AS ResponseFrequency
FROM tblResponses
GROUP BY tblResponses.ResponsesQNumber,
tblResponses.ResponsesResponseNumber, tblResponses.ResponsesQNumber;

qryTotalResponseFrequency:
(counts total number of all responses to each question)
SELECT tblResponses.ResponsesQNumber,
tblResponses.ResponsesResponseNumber,
Count(tblResponses.ResponsesQNumber) AS ResponseFrequency
FROM tblResponses
GROUP BY tblResponses.ResponsesQNumber,
tblResponses.ResponsesResponseNumber;

qryPercentages:
(uses the previous 2 queries to give you the Percentages you wanted)
SELECT qryResponseFrequency.ResponsesQNumber AS QNumber,
qryResponseFrequency.ResponsesResponseNumber AS Response,
qryResponseFrequency.ResponseFrequency,
qryResponseFrequency.ResponseFrequency/qryTotalResponseFrequency.TotalResponseFrequency*1 00
AS ResponsePercent
FROM qryTotalResponseFrequency INNER JOIN qryResponseFrequency ON
qryTotalResponseFrequency.ResponsesQNumber =
qryResponseFrequency.ResponsesQNumber;
Nov 12 '05 #7
I made a table, tblResponses, containing the fields to hold the data,
2 queries to calculate the frequencies and a third query to present
the data in the form: QNumber, Response, ResponseFrequency,
ResponsePercent.

tblResponses:
ResponsesRID (an autonumber field as primary key)
ResponsesQNumber (the question number)
ResponsesResponseNumber (1-4 I guess)

qryResponseFrequency:
(counts frequency of each response to each question)
SELECT tblResponses.ResponsesQNumber,
tblResponses.ResponsesResponseNumber,
Count(tblResponses.ResponsesQNumber) AS ResponseFrequency
FROM tblResponses
GROUP BY tblResponses.ResponsesQNumber,
tblResponses.ResponsesResponseNumber, tblResponses.ResponsesQNumber;

qryTotalResponseFrequency:
(counts total number of all responses to each question)
SELECT tblResponses.ResponsesQNumber,
tblResponses.ResponsesResponseNumber,
Count(tblResponses.ResponsesQNumber) AS ResponseFrequency
FROM tblResponses
GROUP BY tblResponses.ResponsesQNumber,
tblResponses.ResponsesResponseNumber;

qryPercentages:
(uses the previous 2 queries to give you the Percentages you wanted)
SELECT qryResponseFrequency.ResponsesQNumber AS QNumber,
qryResponseFrequency.ResponsesResponseNumber AS Response,
qryResponseFrequency.ResponseFrequency,
qryResponseFrequency.ResponseFrequency/qryTotalResponseFrequency.TotalResponseFrequency*1 00
AS ResponsePercent
FROM qryTotalResponseFrequency INNER JOIN qryResponseFrequency ON
qryTotalResponseFrequency.ResponsesQNumber =
qryResponseFrequency.ResponsesQNumber;
Nov 12 '05 #8
SAM
I have done some reports for a series of questions in a survey with
similar answer choices. Basically, you have to treat each question
and its set of answers separately and then join them back together
later.

The GROUP BY Field1, Count(Field1) is fine, but when you introduce
additional fields, then the GROUP BY must account for them. I sometimes
think of the GROUP BY as working similar to a SELECT DISTINCT.

SAM

"NC Tim" <tb**************@mindspring.com> wrote in message news:<u2******************@newsread2.news.atl.eart hlink.net>...
Hello,
I think the question i have is fairly straightforward, but I can't seem to
replicate the old SAS frequency procedure when I try to accomplish this in
MS Access.

anyway, i have about 10 questions on a survey that have a possible response
range from 0-4.

what I would like to do is simply show that for each question we had x
amount of responses in each category, which amount to x percentage of all
responses:

so if we have the following responses to 5 surveys for question 1
1
2
2
3
4

the frequency distribution would look like:
1 1 20%
2 2 40%
3 1 20%
4 1 20%

I can get this (or at least the frequency) for one question by using a query
and selecting the field twice, then using groupby in the first column and
count in the second column. But if I try to do this for the next field in
the next 2 columns it screws everything up.

can someone help me?
thanks,
Tim Brooks

Nov 12 '05 #9
SAM
I have done some reports for a series of questions in a survey with
similar answer choices. Basically, you have to treat each question
and its set of answers separately and then join them back together
later.

The GROUP BY Field1, Count(Field1) is fine, but when you introduce
additional fields, then the GROUP BY must account for them. I sometimes
think of the GROUP BY as working similar to a SELECT DISTINCT.

SAM

"NC Tim" <tb**************@mindspring.com> wrote in message news:<u2******************@newsread2.news.atl.eart hlink.net>...
Hello,
I think the question i have is fairly straightforward, but I can't seem to
replicate the old SAS frequency procedure when I try to accomplish this in
MS Access.

anyway, i have about 10 questions on a survey that have a possible response
range from 0-4.

what I would like to do is simply show that for each question we had x
amount of responses in each category, which amount to x percentage of all
responses:

so if we have the following responses to 5 surveys for question 1
1
2
2
3
4

the frequency distribution would look like:
1 1 20%
2 2 40%
3 1 20%
4 1 20%

I can get this (or at least the frequency) for one question by using a query
and selecting the field twice, then using groupby in the first column and
count in the second column. But if I try to do this for the next field in
the next 2 columns it screws everything up.

can someone help me?
thanks,
Tim Brooks

Nov 12 '05 #10
Hi Dave,

I sent my "app" (not much there really) to your e-mail.

I also included what appears to be an Access 2.0 survey application that I
had downloaded from somewhere at some point. (Alzheimers?) :)
Tony Toews, possibly? The filename is survey.zip, which includes 2 files
SURVEYLB.MDB and SURVTEST.MDB.
I can't find anything that identifes the author inside of the application
either.

Anyway... This is more likely to be what you're looking for. If anyone else
is interested in this, post here and I'll send it.

Don

"Dave Brydon" <db*****@ns.sympatico.ca> wrote in message
news:HF********************@ursa-nb00s0.nbnet.nb.ca...
Don,

My wife is considering a small survey at work, and is looking for options;
if possible, I would certainly appreciate an example of your database to
pass along to her.

Cheers,

Dave (db*****@ns.sympatico.ca)
(Please Zip file, or change extension, i.e. mydatabase.txt)

"Don Leverton" <le****************@telusplanet.net> wrote in message
news:36Agc.49382$aD.12596@edtnps89...
Hi Tim,

I took this on as a challenge ... I like to do that occasionally as an
opportunity to learn. :)

Here's what I came up with, .......>


Nov 12 '05 #11
Hi Dave,

I sent my "app" (not much there really) to your e-mail.

I also included what appears to be an Access 2.0 survey application that I
had downloaded from somewhere at some point. (Alzheimers?) :)
Tony Toews, possibly? The filename is survey.zip, which includes 2 files
SURVEYLB.MDB and SURVTEST.MDB.
I can't find anything that identifes the author inside of the application
either.

Anyway... This is more likely to be what you're looking for. If anyone else
is interested in this, post here and I'll send it.

Don

"Dave Brydon" <db*****@ns.sympatico.ca> wrote in message
news:HF********************@ursa-nb00s0.nbnet.nb.ca...
Don,

My wife is considering a small survey at work, and is looking for options;
if possible, I would certainly appreciate an example of your database to
pass along to her.

Cheers,

Dave (db*****@ns.sympatico.ca)
(Please Zip file, or change extension, i.e. mydatabase.txt)

"Don Leverton" <le****************@telusplanet.net> wrote in message
news:36Agc.49382$aD.12596@edtnps89...
Hi Tim,

I took this on as a challenge ... I like to do that occasionally as an
opportunity to learn. :)

Here's what I came up with, .......>


Nov 12 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Michael Peuser | last post by:
Hi, I should like to make a distribution (using Tkinter), with standard DLLs removed. pythonXX.dll is no problem. tcl und tk, which make the mass of mega bytes, cannot be removed because...
6
by: NC Tim | last post by:
Hello, I think the question i have is fairly straightforward, but I can't seem to replicate the old SAS frequency procedure when I try to accomplish this in MS Access. anyway, i have about 10...
9
by: RFJ | last post by:
I've got a list of annual turnovers for about fifty companies and I want to summarise them by bands. A simple version would be : eg: Annual_Turnover Count Up to 5million ...
19
by: jason_box | last post by:
I'm alittle new at C and I'm trying to write a simple program that will record the frequency of words and just print it out. It is suppose to take stdin and I heard it's only a few lines but I'm...
0
by: COBRA | last post by:
HI..could anyone help me out on this question? Consider the marks scored by students of a programming module. Allow the user to enter the number of students. The user shall then enter the marks...
6
by: Harryrun | last post by:
Hello am a beginner in programming and I came to a problem with a question in which I need to calculate the frequency of appearance of marks. I have used an array to store the marks but can only...
7
by: Udhay | last post by:
How to get the frequency of an audio file and how to separate the low and high frequency of an audio file
5
by: Slickuser | last post by:
I want to play a note in C# .NET giving a frequency like the one show below. Is it possible? C 261.6 C# 277.2 D 293.7 D# 311.1 E 329.6
11
by: Alex | last post by:
Hi everybody, I wonder if it is possible in python to produce random numbers according to a user defined distribution? Unfortunately the random module does not contain the distribution I need...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.