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  

Customized ID Nos



 
 
Thread Tools Display Modes
  #1  
Old July 13th, 2006, 05:35 PM posted to microsoft.public.access.tablesdbdesign
faxylady
external usenet poster
 
Posts: 135
Default Customized ID Nos

As you have seen before, I have several tables of contact numbers in my
database. For each table, I want to put in a customized ID beginning with
the name or short description of the table. For example, the newspaper table
would begin with an ID of nwp1, nwp2 and so on for each record in the table.
Another example would be govt1, govt2, govt3, etc for each record in the
table. These tables have no autonumber ID now or any type of ID.

My intention is to append each table to a comprehensive table and connect
them relationally. This means each table id will be in the comprehensive
table and joined.

How do I make customized IDs?
  #2  
Old July 13th, 2006, 06:07 PM posted to microsoft.public.access.tablesdbdesign
BruceM
external usenet poster
 
Posts: 356
Default Customized ID Nos

If I have seen before that you have several tables, etc. I have forgotten
it. If you are seeking help it's best not to send people on a search for
the problem.

You could add an autonumber field, which will number in the order you want
for your existing records. Then, change the data type to Number, and
increment it for new records with something like the method he
http://www.rogersaccesslibrary.com/d...berProblem.mdb

I can't even guess what you mean by appending the records into a
comprehensive table and connecting them relationally. I can say that each
table should contain information about a single entity. For instance, in a
school database Students and Courses need to be in separate tables.

"faxylady" wrote in message
...
As you have seen before, I have several tables of contact numbers in my
database. For each table, I want to put in a customized ID beginning with
the name or short description of the table. For example, the newspaper
table
would begin with an ID of nwp1, nwp2 and so on for each record in the
table.
Another example would be govt1, govt2, govt3, etc for each record in the
table. These tables have no autonumber ID now or any type of ID.

My intention is to append each table to a comprehensive table and connect
them relationally. This means each table id will be in the comprehensive
table and joined.

How do I make customized IDs?



  #3  
Old July 14th, 2006, 05:38 AM posted to microsoft.public.access.tablesdbdesign
faxylady
external usenet poster
 
Posts: 135
Default Customized ID Nos

Please see the previous posting under faxylady. Thanks.

"BruceM" wrote:

If I have seen before that you have several tables, etc. I have forgotten
it. If you are seeking help it's best not to send people on a search for
the problem.

You could add an autonumber field, which will number in the order you want
for your existing records. Then, change the data type to Number, and
increment it for new records with something like the method he
http://www.rogersaccesslibrary.com/d...berProblem.mdb

I can't even guess what you mean by appending the records into a
comprehensive table and connecting them relationally. I can say that each
table should contain information about a single entity. For instance, in a
school database Students and Courses need to be in separate tables.

"faxylady" wrote in message
...
As you have seen before, I have several tables of contact numbers in my
database. For each table, I want to put in a customized ID beginning with
the name or short description of the table. For example, the newspaper
table
would begin with an ID of nwp1, nwp2 and so on for each record in the
table.
Another example would be govt1, govt2, govt3, etc for each record in the
table. These tables have no autonumber ID now or any type of ID.

My intention is to append each table to a comprehensive table and connect
them relationally. This means each table id will be in the comprehensive
table and joined.

How do I make customized IDs?




  #4  
Old July 14th, 2006, 05:38 AM posted to microsoft.public.access.tablesdbdesign
faxylady
external usenet poster
 
Posts: 135
Default Customized ID Nos

The data in each table will be appended to a large, massive table. Each
record will have a different ID.

"BruceM" wrote:

If I have seen before that you have several tables, etc. I have forgotten
it. If you are seeking help it's best not to send people on a search for
the problem.

You could add an autonumber field, which will number in the order you want
for your existing records. Then, change the data type to Number, and
increment it for new records with something like the method he
http://www.rogersaccesslibrary.com/d...berProblem.mdb

I can't even guess what you mean by appending the records into a
comprehensive table and connecting them relationally. I can say that each
table should contain information about a single entity. For instance, in a
school database Students and Courses need to be in separate tables.

"faxylady" wrote in message
...
As you have seen before, I have several tables of contact numbers in my
database. For each table, I want to put in a customized ID beginning with
the name or short description of the table. For example, the newspaper
table
would begin with an ID of nwp1, nwp2 and so on for each record in the
table.
Another example would be govt1, govt2, govt3, etc for each record in the
table. These tables have no autonumber ID now or any type of ID.

My intention is to append each table to a comprehensive table and connect
them relationally. This means each table id will be in the comprehensive
table and joined.

How do I make customized IDs?




  #5  
Old July 16th, 2006, 02:33 AM posted to microsoft.public.access.tablesdbdesign
faxylady
external usenet poster
 
Posts: 135
Default Customized ID Nos

Do I put this formula =Dmax["ProductID", "Product"]+1 in the criteria row of
a query? I did this and got an error message saying The expression you
entered contains invalid syntax or you need to enclose your text data in
quotes. You may have entered an invalid comma or omitted quotation marks...
I looked up your reference and followed your directions as to creating an
autonumber field, then changing the data type to number. Then I entered the
expression from your reference in the criteria row, hit run and got this
error message. Please help. Thanks.

"BruceM" wrote:

If I have seen before that you have several tables, etc. I have forgotten
it. If you are seeking help it's best not to send people on a search for
the problem.

You could add an autonumber field, which will number in the order you want
for your existing records. Then, change the data type to Number, and
increment it for new records with something like the method he
http://www.rogersaccesslibrary.com/d...berProblem.mdb

I can't even guess what you mean by appending the records into a
comprehensive table and connecting them relationally. I can say that each
table should contain information about a single entity. For instance, in a
school database Students and Courses need to be in separate tables.

"faxylady" wrote in message
...
As you have seen before, I have several tables of contact numbers in my
database. For each table, I want to put in a customized ID beginning with
the name or short description of the table. For example, the newspaper
table
would begin with an ID of nwp1, nwp2 and so on for each record in the
table.
Another example would be govt1, govt2, govt3, etc for each record in the
table. These tables have no autonumber ID now or any type of ID.

My intention is to append each table to a comprehensive table and connect
them relationally. This means each table id will be in the comprehensive
table and joined.

How do I make customized IDs?




  #6  
Old July 16th, 2006, 06:05 AM posted to microsoft.public.access.tablesdbdesign
John Vinson
external usenet poster
 
Posts: 4,033
Default Customized ID Nos

On Sat, 15 Jul 2006 18:33:01 -0700, faxylady
wrote:

Do I put this formula =Dmax["ProductID", "Product"]+1 in the criteria row of
a query?


Reread the reference. Bruce did not suggest that syntax or anything
resembling it.


John W. Vinson[MVP]
  #7  
Old July 17th, 2006, 01:15 PM posted to microsoft.public.access.tablesdbdesign
BruceM
external usenet poster
 
Posts: 356
Default Customized ID Nos

In the database from Roger's site is the suggestion to put that expression
into the default value property of a text box bound to that field. The
default value comes into play only for a new record. Once the record has
been saved (by moving to another record, for instance, the number is a part
of the record unless you specifically change it. Syntax aside, using the
top value plus one as the criteria must logically fail, as far as I can see.

"faxylady" wrote in message
...
Do I put this formula =Dmax["ProductID", "Product"]+1 in the criteria row
of
a query? I did this and got an error message saying The expression you
entered contains invalid syntax or you need to enclose your text data in
quotes. You may have entered an invalid comma or omitted quotation
marks...
I looked up your reference and followed your directions as to creating an
autonumber field, then changing the data type to number. Then I entered
the
expression from your reference in the criteria row, hit run and got this
error message. Please help. Thanks.

"BruceM" wrote:

If I have seen before that you have several tables, etc. I have forgotten
it. If you are seeking help it's best not to send people on a search for
the problem.

You could add an autonumber field, which will number in the order you
want
for your existing records. Then, change the data type to Number, and
increment it for new records with something like the method he
http://www.rogersaccesslibrary.com/d...berProblem.mdb

I can't even guess what you mean by appending the records into a
comprehensive table and connecting them relationally. I can say that
each
table should contain information about a single entity. For instance, in
a
school database Students and Courses need to be in separate tables.

"faxylady" wrote in message
...
As you have seen before, I have several tables of contact numbers in my
database. For each table, I want to put in a customized ID beginning
with
the name or short description of the table. For example, the newspaper
table
would begin with an ID of nwp1, nwp2 and so on for each record in the
table.
Another example would be govt1, govt2, govt3, etc for each record in
the
table. These tables have no autonumber ID now or any type of ID.

My intention is to append each table to a comprehensive table and
connect
them relationally. This means each table id will be in the
comprehensive
table and joined.

How do I make customized IDs?






  #8  
Old July 17th, 2006, 03:37 PM posted to microsoft.public.access.tablesdbdesign
faxylady
external usenet poster
 
Posts: 135
Default Customized ID Nos

Maybe something went wrong with my download. Somehow, I missed this
information. I visited the site you suggested, but found only minimal
information, including the statement I quoted. I will check again. thanks.

"BruceM" wrote:

In the database from Roger's site is the suggestion to put that expression
into the default value property of a text box bound to that field. The
default value comes into play only for a new record. Once the record has
been saved (by moving to another record, for instance, the number is a part
of the record unless you specifically change it. Syntax aside, using the
top value plus one as the criteria must logically fail, as far as I can see.

"faxylady" wrote in message
...
Do I put this formula =Dmax["ProductID", "Product"]+1 in the criteria row
of
a query? I did this and got an error message saying The expression you
entered contains invalid syntax or you need to enclose your text data in
quotes. You may have entered an invalid comma or omitted quotation
marks...
I looked up your reference and followed your directions as to creating an
autonumber field, then changing the data type to number. Then I entered
the
expression from your reference in the criteria row, hit run and got this
error message. Please help. Thanks.

"BruceM" wrote:

If I have seen before that you have several tables, etc. I have forgotten
it. If you are seeking help it's best not to send people on a search for
the problem.

You could add an autonumber field, which will number in the order you
want
for your existing records. Then, change the data type to Number, and
increment it for new records with something like the method he
http://www.rogersaccesslibrary.com/d...berProblem.mdb

I can't even guess what you mean by appending the records into a
comprehensive table and connecting them relationally. I can say that
each
table should contain information about a single entity. For instance, in
a
school database Students and Courses need to be in separate tables.

"faxylady" wrote in message
...
As you have seen before, I have several tables of contact numbers in my
database. For each table, I want to put in a customized ID beginning
with
the name or short description of the table. For example, the newspaper
table
would begin with an ID of nwp1, nwp2 and so on for each record in the
table.
Another example would be govt1, govt2, govt3, etc for each record in
the
table. These tables have no autonumber ID now or any type of ID.

My intention is to append each table to a comprehensive table and
connect
them relationally. This means each table id will be in the
comprehensive
table and joined.

How do I make customized IDs?






  #9  
Old July 17th, 2006, 03:44 PM posted to microsoft.public.access.tablesdbdesign
BruceM
external usenet poster
 
Posts: 356
Default Customized ID Nos

Did you download the sample database?

"faxylady" wrote in message
...
Maybe something went wrong with my download. Somehow, I missed this
information. I visited the site you suggested, but found only minimal
information, including the statement I quoted. I will check again.
thanks.

"BruceM" wrote:

In the database from Roger's site is the suggestion to put that
expression
into the default value property of a text box bound to that field. The
default value comes into play only for a new record. Once the record has
been saved (by moving to another record, for instance, the number is a
part
of the record unless you specifically change it. Syntax aside, using the
top value plus one as the criteria must logically fail, as far as I can
see.

"faxylady" wrote in message
...
Do I put this formula =Dmax["ProductID", "Product"]+1 in the criteria
row
of
a query? I did this and got an error message saying The expression you
entered contains invalid syntax or you need to enclose your text data
in
quotes. You may have entered an invalid comma or omitted quotation
marks...
I looked up your reference and followed your directions as to creating
an
autonumber field, then changing the data type to number. Then I entered
the
expression from your reference in the criteria row, hit run and got
this
error message. Please help. Thanks.

"BruceM" wrote:

If I have seen before that you have several tables, etc. I have
forgotten
it. If you are seeking help it's best not to send people on a search
for
the problem.

You could add an autonumber field, which will number in the order you
want
for your existing records. Then, change the data type to Number, and
increment it for new records with something like the method he
http://www.rogersaccesslibrary.com/d...berProblem.mdb

I can't even guess what you mean by appending the records into a
comprehensive table and connecting them relationally. I can say that
each
table should contain information about a single entity. For instance,
in
a
school database Students and Courses need to be in separate tables.

"faxylady" wrote in message
...
As you have seen before, I have several tables of contact numbers in
my
database. For each table, I want to put in a customized ID
beginning
with
the name or short description of the table. For example, the
newspaper
table
would begin with an ID of nwp1, nwp2 and so on for each record in
the
table.
Another example would be govt1, govt2, govt3, etc for each record in
the
table. These tables have no autonumber ID now or any type of ID.

My intention is to append each table to a comprehensive table and
connect
them relationally. This means each table id will be in the
comprehensive
table and joined.

How do I make customized IDs?








  #10  
Old July 19th, 2006, 05:49 AM posted to microsoft.public.access.tablesdbdesign
faxylady
external usenet poster
 
Posts: 135
Default Customized ID Nos

What I downloaded appeared to be a database. When I clicked on it, the above
discussed information came up.

Since I found a way to get the customized ID and thought I had joined each
iD to the ID in the BIGtable, why aren't the records being deleted from the
BIGtable when I delete them from the individual tables? In order for this to
happen, does the ID have to be an autonumber?

"BruceM" wrote:

Did you download the sample database?

"faxylady" wrote in message
...
Maybe something went wrong with my download. Somehow, I missed this
information. I visited the site you suggested, but found only minimal
information, including the statement I quoted. I will check again.
thanks.

"BruceM" wrote:

In the database from Roger's site is the suggestion to put that
expression
into the default value property of a text box bound to that field. The
default value comes into play only for a new record. Once the record has
been saved (by moving to another record, for instance, the number is a
part
of the record unless you specifically change it. Syntax aside, using the
top value plus one as the criteria must logically fail, as far as I can
see.

"faxylady" wrote in message
...
Do I put this formula =Dmax["ProductID", "Product"]+1 in the criteria
row
of
a query? I did this and got an error message saying The expression you
entered contains invalid syntax or you need to enclose your text data
in
quotes. You may have entered an invalid comma or omitted quotation
marks...
I looked up your reference and followed your directions as to creating
an
autonumber field, then changing the data type to number. Then I entered
the
expression from your reference in the criteria row, hit run and got
this
error message. Please help. Thanks.

"BruceM" wrote:

If I have seen before that you have several tables, etc. I have
forgotten
it. If you are seeking help it's best not to send people on a search
for
the problem.

You could add an autonumber field, which will number in the order you
want
for your existing records. Then, change the data type to Number, and
increment it for new records with something like the method he
http://www.rogersaccesslibrary.com/d...berProblem.mdb

I can't even guess what you mean by appending the records into a
comprehensive table and connecting them relationally. I can say that
each
table should contain information about a single entity. For instance,
in
a
school database Students and Courses need to be in separate tables.

"faxylady" wrote in message
...
As you have seen before, I have several tables of contact numbers in
my
database. For each table, I want to put in a customized ID
beginning
with
the name or short description of the table. For example, the
newspaper
table
would begin with an ID of nwp1, nwp2 and so on for each record in
the
table.
Another example would be govt1, govt2, govt3, etc for each record in
the
table. These tables have no autonumber ID now or any type of ID.

My intention is to append each table to a comprehensive table and
connect
them relationally. This means each table id will be in the
comprehensive
table and joined.

How do I make customized IDs?









 




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
Stablize Customized menu JB General Discussion 1 January 3rd, 2006 10:20 PM
Can you deploy a customized office instillation through a GPO ACE-Joe Setup, Installing & Configuration 6 April 2nd, 2005 05:11 PM
removing customized toolbars news General Discussion 1 February 24th, 2005 03:11 PM
??? about restoring a "customized version" of Excel 2002 ! Kipp Park Setting up and Configuration 2 September 18th, 2004 04:20 PM
Customized Form not loading Indu Sehgal Contacts 1 April 27th, 2004 06:24 PM


All times are GMT +1. The time now is 05:09 PM.


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