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 » Running & Setting Up Queries
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Make duplicate Records for Wire Labels



 
 
Thread Tools Display Modes
  #1  
Old June 6th, 2008, 06:37 PM posted to microsoft.public.access.queries
2GWLAN
external usenet poster
 
Posts: 11
Default Make duplicate Records for Wire Labels

I need to make wire labels in 4, 6, or 8 copies of each in Access 2007. I
have imported each designation from excel into a table and sorted it. As an
example the record says "1.1.1 (105)". I have also created a Quantity field
with the number of labels reqied for each wire run. I would like to take
this record, multiply it by the Quantity Column, create the required number
of duplicate records, and put these expanded label records into a new table.
After that, I will send it to the label wizard for mass printing. I created
a custom label format for these unique PanDuit Brand wire labels. How do I
format a Query to do this, or is there a better way?

  #2  
Old June 6th, 2008, 06:56 PM posted to microsoft.public.access.queries
KARL DEWEY
external usenet poster
 
Posts: 10,767
Default Make duplicate Records for Wire Labels

Create a table named CountNumber with field named CountNUM with numbers from
1 to your maximum.

Use this query ---
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY]));

I use the CountNumber table a lot for date spreads so I have 0 (zero) in the
table. If you do then use the following query --
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY] And (CountNumber.CountNUM)0))
ORDER BY Labels.Label;
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

I need to make wire labels in 4, 6, or 8 copies of each in Access 2007. I
have imported each designation from excel into a table and sorted it. As an
example the record says "1.1.1 (105)". I have also created a Quantity field
with the number of labels reqied for each wire run. I would like to take
this record, multiply it by the Quantity Column, create the required number
of duplicate records, and put these expanded label records into a new table.
After that, I will send it to the label wizard for mass printing. I created
a custom label format for these unique PanDuit Brand wire labels. How do I
format a Query to do this, or is there a better way?

  #3  
Old June 6th, 2008, 08:39 PM posted to microsoft.public.access.queries
2GWLAN
external usenet poster
 
Posts: 11
Default Make duplicate Records for Wire Labels

Karl,

Here is my naming convention pasted into your format:

SELECT Label_Scheme.Label_ID, Label_Scheme.Wire_Label_QTY,
CountNumber.CountNUM
FROM CountNumber, Label_Scheme
WHERE (((CountNumber.CountNUM)=[Wire_Label_QTY]));

In CountNUM I made 8 records; 1,2,3,4,5,6,7,8

So, I did my Query in design view...
I made the three columns from the appropriate tables, But it loaded the
query with 8 copies in every instance; not the 4, 6, or 8 from each record
of the Wire_Label_QTY field. What I didn't know how to do-- load your
"WHERE" formula in the query. Your other concept of setting it to "0" is
intriguing, but I'm learning to walk!


Thanks for the input,

Phil



"KARL DEWEY" wrote:

Create a table named CountNumber with field named CountNUM with numbers from
1 to your maximum.

Use this query ---
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY]));

I use the CountNumber table a lot for date spreads so I have 0 (zero) in the
table. If you do then use the following query --
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY] And (CountNumber.CountNUM)0))
ORDER BY Labels.Label;
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

I need to make wire labels in 4, 6, or 8 copies of each in Access 2007. I
have imported each designation from excel into a table and sorted it. As an
example the record says "1.1.1 (105)". I have also created a Quantity field
with the number of labels reqied for each wire run. I would like to take
this record, multiply it by the Quantity Column, create the required number
of duplicate records, and put these expanded label records into a new table.
After that, I will send it to the label wizard for mass printing. I created
a custom label format for these unique PanDuit Brand wire labels. How do I
format a Query to do this, or is there a better way?

  #4  
Old June 6th, 2008, 09:35 PM posted to microsoft.public.access.queries
KARL DEWEY
external usenet poster
 
Posts: 10,767
Default Make duplicate Records for Wire Labels

But it loaded the query with 8 copies in every instance; not the 4, 6, or 8
from each record of the Wire_Label_QTY field.

Did you get it to work?
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

Karl,

Here is my naming convention pasted into your format:

SELECT Label_Scheme.Label_ID, Label_Scheme.Wire_Label_QTY,
CountNumber.CountNUM
FROM CountNumber, Label_Scheme
WHERE (((CountNumber.CountNUM)=[Wire_Label_QTY]));

In CountNUM I made 8 records; 1,2,3,4,5,6,7,8

So, I did my Query in design view...
I made the three columns from the appropriate tables, But it loaded the
query with 8 copies in every instance; not the 4, 6, or 8 from each record
of the Wire_Label_QTY field. What I didn't know how to do-- load your
"WHERE" formula in the query. Your other concept of setting it to "0" is
intriguing, but I'm learning to walk!


Thanks for the input,

Phil



"KARL DEWEY" wrote:

Create a table named CountNumber with field named CountNUM with numbers from
1 to your maximum.

Use this query ---
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY]));

I use the CountNumber table a lot for date spreads so I have 0 (zero) in the
table. If you do then use the following query --
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY] And (CountNumber.CountNUM)0))
ORDER BY Labels.Label;
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

I need to make wire labels in 4, 6, or 8 copies of each in Access 2007. I
have imported each designation from excel into a table and sorted it. As an
example the record says "1.1.1 (105)". I have also created a Quantity field
with the number of labels reqied for each wire run. I would like to take
this record, multiply it by the Quantity Column, create the required number
of duplicate records, and put these expanded label records into a new table.
After that, I will send it to the label wizard for mass printing. I created
a custom label format for these unique PanDuit Brand wire labels. How do I
format a Query to do this, or is there a better way?

  #5  
Old June 6th, 2008, 09:46 PM posted to microsoft.public.access.queries
2GWLAN
external usenet poster
 
Posts: 11
Default Make duplicate Records for Wire Labels

Close...

Here was my post back to you... Can you help me streamline it so it produces
the appropriate number?

Karl,

Here is my naming convention pasted into your format:

SELECT Label_Scheme.Label_ID, Label_Scheme.Wire_Label_QTY,
CountNumber.CountNUM
FROM CountNumber, Label_Scheme
WHERE (((CountNumber.CountNUM)=[Wire_Label_QTY]));

In CountNUM I made 8 records; 1,2,3,4,5,6,7,8

So, I did my Query in design view...
I made the three columns from the appropriate tables, But it loaded the
query with 8 copies in every instance; not the 4, 6, or 8 from each record
of the Wire_Label_QTY field. What I didn't know how to do-- load your
"WHERE" formula in the query. Your other concept of setting it to "0" is
intriguing, but I'm learning to walk!

Thanks,

Phil Elmers

"KARL DEWEY" wrote:

But it loaded the query with 8 copies in every instance; not the 4, 6, or 8

from each record of the Wire_Label_QTY field.

Did you get it to work?
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

Karl,

Here is my naming convention pasted into your format:

SELECT Label_Scheme.Label_ID, Label_Scheme.Wire_Label_QTY,
CountNumber.CountNUM
FROM CountNumber, Label_Scheme
WHERE (((CountNumber.CountNUM)=[Wire_Label_QTY]));

In CountNUM I made 8 records; 1,2,3,4,5,6,7,8

So, I did my Query in design view...
I made the three columns from the appropriate tables, But it loaded the
query with 8 copies in every instance; not the 4, 6, or 8 from each record
of the Wire_Label_QTY field. What I didn't know how to do-- load your
"WHERE" formula in the query. Your other concept of setting it to "0" is
intriguing, but I'm learning to walk!


Thanks for the input,

Phil



"KARL DEWEY" wrote:

Create a table named CountNumber with field named CountNUM with numbers from
1 to your maximum.

Use this query ---
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY]));

I use the CountNumber table a lot for date spreads so I have 0 (zero) in the
table. If you do then use the following query --
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY] And (CountNumber.CountNUM)0))
ORDER BY Labels.Label;
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

I need to make wire labels in 4, 6, or 8 copies of each in Access 2007. I
have imported each designation from excel into a table and sorted it. As an
example the record says "1.1.1 (105)". I have also created a Quantity field
with the number of labels reqied for each wire run. I would like to take
this record, multiply it by the Quantity Column, create the required number
of duplicate records, and put these expanded label records into a new table.
After that, I will send it to the label wizard for mass printing. I created
a custom label format for these unique PanDuit Brand wire labels. How do I
format a Query to do this, or is there a better way?

  #6  
Old June 6th, 2008, 11:56 PM posted to microsoft.public.access.queries
KARL DEWEY
external usenet poster
 
Posts: 10,767
Default Make duplicate Records for Wire Labels

Check and see if [Wire_Label_QTY] and [CountNUM] are number fields.

--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

Close...

Here was my post back to you... Can you help me streamline it so it produces
the appropriate number?

Karl,

Here is my naming convention pasted into your format:

SELECT Label_Scheme.Label_ID, Label_Scheme.Wire_Label_QTY,
CountNumber.CountNUM
FROM CountNumber, Label_Scheme
WHERE (((CountNumber.CountNUM)=[Wire_Label_QTY]));

In CountNUM I made 8 records; 1,2,3,4,5,6,7,8

So, I did my Query in design view...
I made the three columns from the appropriate tables, But it loaded the
query with 8 copies in every instance; not the 4, 6, or 8 from each record
of the Wire_Label_QTY field. What I didn't know how to do-- load your
"WHERE" formula in the query. Your other concept of setting it to "0" is
intriguing, but I'm learning to walk!

Thanks,

Phil Elmers

"KARL DEWEY" wrote:

But it loaded the query with 8 copies in every instance; not the 4, 6, or 8

from each record of the Wire_Label_QTY field.

Did you get it to work?
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

Karl,

Here is my naming convention pasted into your format:

SELECT Label_Scheme.Label_ID, Label_Scheme.Wire_Label_QTY,
CountNumber.CountNUM
FROM CountNumber, Label_Scheme
WHERE (((CountNumber.CountNUM)=[Wire_Label_QTY]));

In CountNUM I made 8 records; 1,2,3,4,5,6,7,8

So, I did my Query in design view...
I made the three columns from the appropriate tables, But it loaded the
query with 8 copies in every instance; not the 4, 6, or 8 from each record
of the Wire_Label_QTY field. What I didn't know how to do-- load your
"WHERE" formula in the query. Your other concept of setting it to "0" is
intriguing, but I'm learning to walk!


Thanks for the input,

Phil



"KARL DEWEY" wrote:

Create a table named CountNumber with field named CountNUM with numbers from
1 to your maximum.

Use this query ---
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY]));

I use the CountNumber table a lot for date spreads so I have 0 (zero) in the
table. If you do then use the following query --
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY] And (CountNumber.CountNUM)0))
ORDER BY Labels.Label;
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

I need to make wire labels in 4, 6, or 8 copies of each in Access 2007. I
have imported each designation from excel into a table and sorted it. As an
example the record says "1.1.1 (105)". I have also created a Quantity field
with the number of labels reqied for each wire run. I would like to take
this record, multiply it by the Quantity Column, create the required number
of duplicate records, and put these expanded label records into a new table.
After that, I will send it to the label wizard for mass printing. I created
a custom label format for these unique PanDuit Brand wire labels. How do I
format a Query to do this, or is there a better way?

  #7  
Old June 7th, 2008, 03:05 AM posted to microsoft.public.access.queries
2GWLAN
external usenet poster
 
Posts: 11
Default Make duplicate Records for Wire Labels

KARL YOUR A GENIUS!!! IT WORKED!

Here's what I Learned-- to share with other Novices---

You sent me this-
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY]))

1. I didn't initially send you the actual Table and Field names, so the
above was not quite accurate. I converted it to this-
SELECT Label_Scheme.Label_ID, Label_Scheme.Wire_Label_QTY,
CountNumber.CountNUM
FROM CountNumber, Label_Scheme
WHERE (((CountNumber.CountNUM)=[Wire_Label_QTY]))

2. The CountNumber Table was in text, not numbers- I corrected it but
still printed 8 of each because I didn't use the WHERE line

3. The "WHERE" line- I didn't know what to do with it; I pasted it in the
criteria line and got an error. Then I tried it in the OR line and IT
WORKED!!!

Thanks, Karl

Phil Elmers
2nd Gen Wireless LAN Project Manager









"KARL DEWEY" wrote:

Check and see if [Wire_Label_QTY] and [CountNUM] are number fields.

--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

Close...

Here was my post back to you... Can you help me streamline it so it produces
the appropriate number?

Karl,

Here is my naming convention pasted into your format:

SELECT Label_Scheme.Label_ID, Label_Scheme.Wire_Label_QTY,
CountNumber.CountNUM
FROM CountNumber, Label_Scheme
WHERE (((CountNumber.CountNUM)=[Wire_Label_QTY]));

In CountNUM I made 8 records; 1,2,3,4,5,6,7,8

So, I did my Query in design view...
I made the three columns from the appropriate tables, But it loaded the
query with 8 copies in every instance; not the 4, 6, or 8 from each record
of the Wire_Label_QTY field. What I didn't know how to do-- load your
"WHERE" formula in the query. Your other concept of setting it to "0" is
intriguing, but I'm learning to walk!

Thanks,

Phil Elmers

"KARL DEWEY" wrote:

But it loaded the query with 8 copies in every instance; not the 4, 6, or 8
from each record of the Wire_Label_QTY field.

Did you get it to work?
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

Karl,

Here is my naming convention pasted into your format:

SELECT Label_Scheme.Label_ID, Label_Scheme.Wire_Label_QTY,
CountNumber.CountNUM
FROM CountNumber, Label_Scheme
WHERE (((CountNumber.CountNUM)=[Wire_Label_QTY]));

In CountNUM I made 8 records; 1,2,3,4,5,6,7,8

So, I did my Query in design view...
I made the three columns from the appropriate tables, But it loaded the
query with 8 copies in every instance; not the 4, 6, or 8 from each record
of the Wire_Label_QTY field. What I didn't know how to do-- load your
"WHERE" formula in the query. Your other concept of setting it to "0" is
intriguing, but I'm learning to walk!


Thanks for the input,

Phil



"KARL DEWEY" wrote:

Create a table named CountNumber with field named CountNUM with numbers from
1 to your maximum.

Use this query ---
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY]));

I use the CountNumber table a lot for date spreads so I have 0 (zero) in the
table. If you do then use the following query --
SELECT Labels.Label, Labels.QTY, CountNumber.CountNUM
FROM CountNumber, Labels
WHERE (((CountNumber.CountNUM)=[QTY] And (CountNumber.CountNUM)0))
ORDER BY Labels.Label;
--
KARL DEWEY
Build a little - Test a little


"2GWLAN" wrote:

I need to make wire labels in 4, 6, or 8 copies of each in Access 2007. I
have imported each designation from excel into a table and sorted it. As an
example the record says "1.1.1 (105)". I have also created a Quantity field
with the number of labels reqied for each wire run. I would like to take
this record, multiply it by the Quantity Column, create the required number
of duplicate records, and put these expanded label records into a new table.
After that, I will send it to the label wizard for mass printing. I created
a custom label format for these unique PanDuit Brand wire labels. How do I
format a Query to do this, or is there a better way?

 




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


All times are GMT +1. The time now is 11:47 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.