A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

using intermediate tables



 
 
Thread Tools Display Modes
  #1  
Old October 18th, 2004, 03:11 PM
Papa Jonah
external usenet poster
 
Posts: n/a
Default using intermediate tables

I have a subform that I use to relate Bible verses to another form. In the
subform I have a field for book, another for chapter, and another for verse.
These get stored in a separate table from the info in the parent form. My
trouble is that often one verse is listed several times - which is fine I
guess. What I want to do is add the text for the verses and I don't want
that to be repeated. I am trying to figure out how to set up another table
to store the text of the verses in a memo field along with the verse
references.
What I am thinking is that the subform's underlying table might be an
intermediate table that is used to link the parent table to the new table
with the text. I am not sure how to do this.
  #2  
Old October 18th, 2004, 05:25 PM
Geof Wyght
external usenet poster
 
Posts: n/a
Default

I'm having trouble picturing this because you haven't told
us what's in the underlying table of the parent form.
Geof Wyght.
-----Original Message-----
I have a subform that I use to relate Bible verses to

another form. In the
subform I have a field for book, another for chapter, and

another for verse.
These get stored in a separate table from the info in the

parent form. My
trouble is that often one verse is listed several times -

which is fine I
guess. What I want to do is add the text for the verses

and I don't want
that to be repeated. I am trying to figure out how to

set up another table
to store the text of the verses in a memo field along

with the verse
references.
What I am thinking is that the subform's underlying table

might be an
intermediate table that is used to link the parent table

to the new table
with the text. I am not sure how to do this.
.

  #3  
Old October 18th, 2004, 06:45 PM
Papa Jonah
external usenet poster
 
Posts: n/a
Default

the underlying table of the parent form simply has things such as entry id,
date, location, person name, notes.

"Geof Wyght" wrote:

I'm having trouble picturing this because you haven't told
us what's in the underlying table of the parent form.
Geof Wyght.
-----Original Message-----
I have a subform that I use to relate Bible verses to

another form. In the
subform I have a field for book, another for chapter, and

another for verse.
These get stored in a separate table from the info in the

parent form. My
trouble is that often one verse is listed several times -

which is fine I
guess. What I want to do is add the text for the verses

and I don't want
that to be repeated. I am trying to figure out how to

set up another table
to store the text of the verses in a memo field along

with the verse
references.
What I am thinking is that the subform's underlying table

might be an
intermediate table that is used to link the parent table

to the new table
with the text. I am not sure how to do this.
.


  #4  
Old October 18th, 2004, 07:37 PM
Geof Wyght
external usenet poster
 
Posts: n/a
Default

I wonder why the verse is repeated? In any event, you
could have a table with bookid, chapterid, verseid, The
you could have a verse table with verseid (autonumber) and
verse (memo). Link the two table by verseid in Tools,
Relationships. Does that help?
Geof Wyght.
-----Original Message-----
I have a subform that I use to relate Bible verses to

another form. In the
subform I have a field for book, another for chapter, and

another for verse.
These get stored in a separate table from the info in the

parent form. My
trouble is that often one verse is listed several times -

which is fine I
guess. What I want to do is add the text for the verses

and I don't want
that to be repeated. I am trying to figure out how to

set up another table
to store the text of the verses in a memo field along

with the verse
references.
What I am thinking is that the subform's underlying table

might be an
intermediate table that is used to link the parent table

to the new table
with the text. I am not sure how to do this.
.

  #5  
Old October 18th, 2004, 08:11 PM
Papa Jonah
external usenet poster
 
Posts: n/a
Default

no.
The reason is because the way I currently have it, which may be wrong, the
verse is recorded independent of the book and chapter fields. The reason a
verse may be repeated is because it may be referenced in multiple entries in
the parent form.
I have the book, chapter, and verse captured in different fields to ensure
consistent entry by different users, and so that the books can be selected in
a combobox.
Does that make sense?

"Geof Wyght" wrote:

I wonder why the verse is repeated? In any event, you
could have a table with bookid, chapterid, verseid, The
you could have a verse table with verseid (autonumber) and
verse (memo). Link the two table by verseid in Tools,
Relationships. Does that help?
Geof Wyght.
-----Original Message-----
I have a subform that I use to relate Bible verses to

another form. In the
subform I have a field for book, another for chapter, and

another for verse.
These get stored in a separate table from the info in the

parent form. My
trouble is that often one verse is listed several times -

which is fine I
guess. What I want to do is add the text for the verses

and I don't want
that to be repeated. I am trying to figure out how to

set up another table
to store the text of the verses in a memo field along

with the verse
references.
What I am thinking is that the subform's underlying table

might be an
intermediate table that is used to link the parent table

to the new table
with the text. I am not sure how to do this.
.


  #6  
Old October 18th, 2004, 11:04 PM
Geof Wyght
external usenet poster
 
Posts: n/a
Default

When I suggest that you create a verse table consisting
of an autonumber verseid, and a memo verse field, you are
making verse independent of anything else. Doesn't this
satisfy one of your original objectives?
Geof Wyght.
-----Original Message-----
no.
The reason is because the way I currently have it, which

may be wrong, the
verse is recorded independent of the book and chapter

fields. The reason a
verse may be repeated is because it may be referenced in

multiple entries in
the parent form.
I have the book, chapter, and verse captured in

different fields to ensure
consistent entry by different users, and so that the

books can be selected in
a combobox.
Does that make sense?

"Geof Wyght" wrote:

I wonder why the verse is repeated? In any event, you
could have a table with bookid, chapterid, verseid,

The
you could have a verse table with verseid (autonumber)

and
verse (memo). Link the two table by verseid in Tools,
Relationships. Does that help?
Geof Wyght.
-----Original Message-----
I have a subform that I use to relate Bible verses to

another form. In the
subform I have a field for book, another for chapter,

and
another for verse.
These get stored in a separate table from the info in

the
parent form. My
trouble is that often one verse is listed several

times -
which is fine I
guess. What I want to do is add the text for the

verses
and I don't want
that to be repeated. I am trying to figure out how

to
set up another table
to store the text of the verses in a memo field along

with the verse
references.
What I am thinking is that the subform's underlying

table
might be an
intermediate table that is used to link the parent

table
to the new table
with the text. I am not sure how to do this.
.


.

  #7  
Old October 19th, 2004, 12:23 AM
John Vinson
external usenet poster
 
Posts: n/a
Default

On Mon, 18 Oct 2004 07:11:01 -0700, "Papa Jonah"
wrote:

I have a subform that I use to relate Bible verses to another form. In the
subform I have a field for book, another for chapter, and another for verse.
These get stored in a separate table from the info in the parent form. My
trouble is that often one verse is listed several times - which is fine I
guess. What I want to do is add the text for the verses and I don't want
that to be repeated. I am trying to figure out how to set up another table
to store the text of the verses in a memo field along with the verse
references.
What I am thinking is that the subform's underlying table might be an
intermediate table that is used to link the parent table to the new table
with the text. I am not sure how to do this.


I think your intermediate table might have the following fields:

CitationID Autonumber (Primary Key)
ParentTableID link to whatever your main form's table is
Book
Chapter
Verse

The three Bible fields could be filled using combo boxes - you can
even have the Chapter combo show only the proper number of chapters
for each book, and the Verse combo for each chapter.

John W. Vinson[MVP]
Join the online Access Chats
Tuesday 11am EDT - Thursday 3:30pm EDT
http://community.compuserve.com/msdevapps
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
how to share pivot tables Will General Discussion 0 October 22nd, 2004 04:33 PM
Help with Junction Tables and Subforms Maureen Smith New Users 11 September 23rd, 2004 02:39 PM
Mutliple Tables lookup? Westley Database Design 4 June 15th, 2004 01:07 AM
searching for "join tables" and "join word tables" Uncle Bill Tables 1 June 11th, 2004 09:33 PM
How do I design a database based on the information that will be stored? - Copy of Tables and hirearchies.zip (0/1) Jim Database Design 1 June 1st, 2004 01:44 PM


All times are GMT +1. The time now is 06:39 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.