<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Create a Survey Database in Access: Part II</title>
	<atom:link href="http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/</link>
	<description>Helping you work faster and smarter. Video tutorials for the academic and research community.</description>
	<lastBuildDate>Wed, 01 Sep 2010 21:53:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kurt</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1311</link>
		<dc:creator>Kurt</dc:creator>
		<pubDate>Thu, 26 Aug 2010 15:05:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1311</guid>
		<description>You&#039;ll need to split your existing table (tblSurveys?) into two tables, tblSubjects and tblSurveys, and create a one-to-many relationship between them, such that *one* Subject can have *many* Surveys. Read up on one-to-many relationships to understand the concept.

tblSubjects will contain fields like SubjectID (the primary key), and any data unique to the subject that you&#039;re keeping (Age, Race, etc.). 

tblSurveys will contain fields like SurveyID (the primary key), SubjectID (the &quot;foreign key&quot; linked to SubjectID in tblSurveys), and any fields unique to the survey (year, q1, q2, q3, etc.) So, a subject who completes two surveys will have one SubjectID and two SurveyIDs. 

At the form level, one-to-many relationships are implemented using a main form (frmSubjects, based on tblSubjects) and a subform (fsubSurveys, based on tblSurveys). The subform is linked to the main form via SurveyID, which is the only field the two tables have in common. 

Since your table is already filled with data, splitting things into two tables that are properly linked is tricky. Access has a Wizard to help you do this (Tools &gt; Analyze &gt; Table) but it&#039;s not always intuitive. It&#039;s a place to start, though. Once you get the table structure in place, your next step is to create the form and subform interface. For your situation, I&#039;m guessing: 1) create a new form called frmSubjects based on tblSubjects, that includes all the Subject-specific fields (maybe that&#039;s just SubjectID); 2) drag and drop your current form, frmSurveys, onto frmSubjects, thus making it a subform. If all goes well, Access will detect the common link and link them appropriately, allowing you to enter multiple surveys for each subject.</description>
		<content:encoded><![CDATA[<p>You&#8217;ll need to split your existing table (tblSurveys?) into two tables, tblSubjects and tblSurveys, and create a one-to-many relationship between them, such that *one* Subject can have *many* Surveys. Read up on one-to-many relationships to understand the concept.</p>
<p>tblSubjects will contain fields like SubjectID (the primary key), and any data unique to the subject that you&#8217;re keeping (Age, Race, etc.). </p>
<p>tblSurveys will contain fields like SurveyID (the primary key), SubjectID (the &#8220;foreign key&#8221; linked to SubjectID in tblSurveys), and any fields unique to the survey (year, q1, q2, q3, etc.) So, a subject who completes two surveys will have one SubjectID and two SurveyIDs. </p>
<p>At the form level, one-to-many relationships are implemented using a main form (frmSubjects, based on tblSubjects) and a subform (fsubSurveys, based on tblSurveys). The subform is linked to the main form via SurveyID, which is the only field the two tables have in common. </p>
<p>Since your table is already filled with data, splitting things into two tables that are properly linked is tricky. Access has a Wizard to help you do this (Tools > Analyze > Table) but it&#8217;s not always intuitive. It&#8217;s a place to start, though. Once you get the table structure in place, your next step is to create the form and subform interface. For your situation, I&#8217;m guessing: 1) create a new form called frmSubjects based on tblSubjects, that includes all the Subject-specific fields (maybe that&#8217;s just SubjectID); 2) drag and drop your current form, frmSurveys, onto frmSubjects, thus making it a subform. If all goes well, Access will detect the common link and link them appropriately, allowing you to enter multiple surveys for each subject.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1308</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Fri, 20 Aug 2010 18:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1308</guid>
		<description>Kurt - You gave me a lot of valuable help in setting up a database and forms for entering household surveys. It all went very well so thanks again for your help. 

I have what might be an easy question. We are in year two of our study. We kept the same instrument so essentially I&#039;d like to begin entering year 2 data. Ideally, I change the year for a particular respondent and the form then goes blank and I am able to enter all year 2 data. I am not sure how to do this. I can&#039;t create a new record as we are sticking with the same respondent IDs (i.e. primary keys). Any quick thoughts or suggestions? What is the best way to do this?</description>
		<content:encoded><![CDATA[<p>Kurt &#8211; You gave me a lot of valuable help in setting up a database and forms for entering household surveys. It all went very well so thanks again for your help. </p>
<p>I have what might be an easy question. We are in year two of our study. We kept the same instrument so essentially I&#8217;d like to begin entering year 2 data. Ideally, I change the year for a particular respondent and the form then goes blank and I am able to enter all year 2 data. I am not sure how to do this. I can&#8217;t create a new record as we are sticking with the same respondent IDs (i.e. primary keys). Any quick thoughts or suggestions? What is the best way to do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1302</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 09 Jul 2010 22:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1302</guid>
		<description>Thank you very much for sharing! It is a very useful tutorial. I have a question: after I create the data base, how do I send the survey to every respondant in order to feed my data base?</description>
		<content:encoded><![CDATA[<p>Thank you very much for sharing! It is a very useful tutorial. I have a question: after I create the data base, how do I send the survey to every respondant in order to feed my data base?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted Carpenter</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1292</link>
		<dc:creator>Ted Carpenter</dc:creator>
		<pubDate>Sun, 30 May 2010 11:46:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1292</guid>
		<description>I have duplicated the non-normalized database, but the problem I am having is with the queries. I will not be exporting my data to SAS, so I would like to see the actual text value, not the number value. How can I do this considering my queries are storing just numbers?</description>
		<content:encoded><![CDATA[<p>I have duplicated the non-normalized database, but the problem I am having is with the queries. I will not be exporting my data to SAS, so I would like to see the actual text value, not the number value. How can I do this considering my queries are storing just numbers?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachel</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1247</link>
		<dc:creator>Rachel</dc:creator>
		<pubDate>Mon, 25 Jan 2010 03:04:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1247</guid>
		<description>Thank you so much! This was amazingly helpful. An additional tutorial about importing data would also be appreciated...  :)</description>
		<content:encoded><![CDATA[<p>Thank you so much! This was amazingly helpful. An additional tutorial about importing data would also be appreciated&#8230;  <img src='http://www.researchtutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1238</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Thu, 24 Dec 2009 13:57:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1238</guid>
		<description>I agree with everyone here, this is a great tutorial.  I am going to have some of my Marines, take a look, so they can learn about Access.

I am trying to build a survey database as well, but not as large as some of the other respondents I have seen.  I have two tables one for Instructional Rating Form and one for Examination Rating Form.  The vast majority of the questions utilize the Licard (spelling?)scale.  What I need to be able to is take and make an after instruction/examination report, that totals how many people reponded to agree, disagree and so on per question.  That is where I get stumped.

I do not have the option to use any further software, I have to stay in Access to create my reports.  I checked out your sample database with the union query, but can&#039;t see how to get them grouped to the specific question.

Your tutorial has already helped a great deal.  Thanks in advance.

Semper Fi,

Jon</description>
		<content:encoded><![CDATA[<p>I agree with everyone here, this is a great tutorial.  I am going to have some of my Marines, take a look, so they can learn about Access.</p>
<p>I am trying to build a survey database as well, but not as large as some of the other respondents I have seen.  I have two tables one for Instructional Rating Form and one for Examination Rating Form.  The vast majority of the questions utilize the Licard (spelling?)scale.  What I need to be able to is take and make an after instruction/examination report, that totals how many people reponded to agree, disagree and so on per question.  That is where I get stumped.</p>
<p>I do not have the option to use any further software, I have to stay in Access to create my reports.  I checked out your sample database with the union query, but can&#8217;t see how to get them grouped to the specific question.</p>
<p>Your tutorial has already helped a great deal.  Thanks in advance.</p>
<p>Semper Fi,</p>
<p>Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DavidBoley</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1231</link>
		<dc:creator>DavidBoley</dc:creator>
		<pubDate>Mon, 07 Dec 2009 09:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1231</guid>
		<description>I would really like to see a tutorial on this. Everything else you&#039;ve done is brilliant!</description>
		<content:encoded><![CDATA[<p>I would really like to see a tutorial on this. Everything else you&#8217;ve done is brilliant!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1228</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sat, 28 Nov 2009 00:38:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1228</guid>
		<description>I am very confused about the normalized version of this survey. I have 100 surveys to enter into Access from a college, all of which are four pages, but plan to add multiple batches of 100 surveys in the near future (for other population samples-- ie, other colleges).

I want to keep each batch of 100 separate, and I will want to use regression at one point to analyze the data.

I tried to follow your &quot;normalized data tables&quot; brief introduction, but it doesn&#039;t make any sense to me. Your four proposed tables were: 1 for questions, 1 for possible answers, 1 for respondents, and 1 for completed surveys (&quot;responses&quot;). I like that idea of using the Responses table, but get stuck.

The Questions table you show in datasheet view has a new record for each question-- not a new field for each question. Yet your Answers table only shows &quot;question ID&quot; and &quot;choice&quot; for possible fields-- that&#039;s where I get stuck. What do I enter in for choice in the datasheet view of the Answer table for it to make sense later on when I link it with the Questions and Responses table. (For now, I don&#039;t plan on keeping a Respondent table).

Please let me know. Thank you so much.

-David</description>
		<content:encoded><![CDATA[<p>I am very confused about the normalized version of this survey. I have 100 surveys to enter into Access from a college, all of which are four pages, but plan to add multiple batches of 100 surveys in the near future (for other population samples&#8211; ie, other colleges).</p>
<p>I want to keep each batch of 100 separate, and I will want to use regression at one point to analyze the data.</p>
<p>I tried to follow your &#8220;normalized data tables&#8221; brief introduction, but it doesn&#8217;t make any sense to me. Your four proposed tables were: 1 for questions, 1 for possible answers, 1 for respondents, and 1 for completed surveys (&#8220;responses&#8221;). I like that idea of using the Responses table, but get stuck.</p>
<p>The Questions table you show in datasheet view has a new record for each question&#8211; not a new field for each question. Yet your Answers table only shows &#8220;question ID&#8221; and &#8220;choice&#8221; for possible fields&#8211; that&#8217;s where I get stuck. What do I enter in for choice in the datasheet view of the Answer table for it to make sense later on when I link it with the Questions and Responses table. (For now, I don&#8217;t plan on keeping a Respondent table).</p>
<p>Please let me know. Thank you so much.</p>
<p>-David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pura</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1215</link>
		<dc:creator>Pura</dc:creator>
		<pubDate>Mon, 02 Nov 2009 02:47:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1215</guid>
		<description>Thank you!</description>
		<content:encoded><![CDATA[<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frookson</title>
		<link>http://www.researchtutorials.com/data-management/create-a-survey-database-in-access-part-ii/comment-page-1/#comment-1195</link>
		<dc:creator>Frookson</dc:creator>
		<pubDate>Fri, 23 Oct 2009 09:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.researchtutorials.com/wptestsite/?p=125#comment-1195</guid>
		<description>Do you have a Part III to this series, which would cover Reports?</description>
		<content:encoded><![CDATA[<p>Do you have a Part III to this series, which would cover Reports?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
