PC Review


Reply
Thread Tools Rate Thread

How to creat an index for my notes?

 
 
=?Utf-8?B?c3RhdA==?=
Guest
Posts: n/a
 
      9th Nov 2006
Hi there,

I'm an MA student, and I'm using indexing cards to jot down interesting
notes I find in the literature. I've got so many cards though, it's getting
confusing. Also, some things I want to enter under several different index
cards but don't want to write them out again and again.

Using Office, can I create a file where I write up my notes, and 'tag' each
note so that I can later come back and review all the notes under each tag?

Many thanks!!
 
Reply With Quote
 
 
 
 
=?Utf-8?B?S2VuIFNoZXJpZGFu?=
Guest
Posts: n/a
 
      9th Nov 2006
MS Access is a relational database and well suited for this sort of task as
what you are describing is a many-to-may relationship between Notes and Tags.
In a relational database this would be modelled by having a Notes table, a
Tags table and a third NoteTags table to model the relationship between them.

The Notes table would have a NoteID as its primary key; this can be an
autonumber column. It would also have a Notes memo field into which the
text for each note is entered.

The Tags table really just need the one field Tag, of text data type, and
set as the table's primary key.

To relate each note to multiple tags and vice versa the NoteTags table just
needs two fields NoteID, a straightforward long integer number data type in
this case, not an autonumber, and a text Tag field. The two columns would be
made the table's composite primary key.

For data entry you'd create a form, in single form view, based on the Notes
table with a large text box to enter the text into. This form would have
within it a subform based on the NoteTags table, with the subform linked to
the main form on NoteID. The subform would be in continuous form view and
would have just one control, a combo box bound to the tag field. This would
have a RowSource which lists the tags alphabetically:

SELECT Tag FROM Tags ORDER BY Tag;

To select tags for the note you've entered you simply create however many
records are necessary in the subform by selecting a Tag value from the combo
box's list for each record you create. You can even set it up to add a new
tag into the tags table by typing it into the combo box if its not already in
the list (we can go into that in more details later if you wish).

To interrogate the database you can create another unbound dialogue form,
i.e. one not based on any table. This could have a combo box of the tag
values so that when you select one it would allow you to open your bound form
at those notes which are 'tagged' with the value you've selected; you could
also print a report of the relevant notes if you wish from the same dialogue
form.

Rather than having a combo box on the dialogue form, another option would be
to have a multiselect list box, which would enable you to select one or more
tags from the list and output the notes which match any of those tags. You
could even design it to give you the choice of finding those notes which
match all the selected tags, or those which match any of them; i.e. a Boolean
AND or OR operation in terms of the underlying logic.

If you decide to head down this road I'd concentrate on getting the tables
and main form/subform set up first. We can then come back to adding the
other functionality.

Ken Sheridan
Stafford, England

"stat" wrote:

> Hi there,
>
> I'm an MA student, and I'm using indexing cards to jot down interesting
> notes I find in the literature. I've got so many cards though, it's getting
> confusing. Also, some things I want to enter under several different index
> cards but don't want to write them out again and again.
>
> Using Office, can I create a file where I write up my notes, and 'tag' each
> note so that I can later come back and review all the notes under each tag?
>
> Many thanks!!


 
Reply With Quote
 
Tony Toews
Guest
Posts: n/a
 
      12th Nov 2006
stat <(E-Mail Removed)> wrote:

>I'm an MA student, and I'm using indexing cards to jot down interesting
>notes I find in the literature. I've got so many cards though, it's getting
>confusing. Also, some things I want to enter under several different index
>cards but don't want to write them out again and again.
>
>Using Office, can I create a file where I write up my notes, and 'tag' each
>note so that I can later come back and review all the notes under each tag?


I would suggest using OneNote. It may not be designed exactly for
what you want to do but that's where I store all my free format notes
on projects and whatever else I want to search one.

http://office.microsoft.com/en-us/on...487701033.aspx

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
creat index arnold_ Microsoft Excel Discussion 6 25th Aug 2008 11:46 AM
Outlook 2007 won't index / search Contact Notes and Task Notes mozart90077@gmail.com Microsoft Outlook Contacts 1 8th Sep 2007 10:56 AM
Can I creat a template in the notes space of an appointment ? =?Utf-8?B?c2VhdHRsZXN1bm55?= Microsoft Outlook Calendar 3 17th Jun 2006 07:24 PM
creat email using Lotus Notes from Access form Mina Microsoft Access 4 12th Jan 2006 07:43 PM
Re: Creat index to use it in VBasic6 =?Utf-8?B?cGFudGVsaXM=?= Microsoft Access 1 2nd Aug 2005 02:29 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:00 PM.