Print Contact Cards

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello -

I'm trying to print some labels from Acces that would produce a result like
this:

____________________________________________________________
| Name1 (W) xxx-xxxx (C) xxx-xxxx | Name1 (W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
| Name2 (W) xxx-xxxx (C) xxx-xxxx |Name2 (W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
| Name3 (W) xxx-xxxx (C) xxx-xxxx |Name3(W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
| Name4 (W) xxx-xxxx (C) xxx-xxxx |Name4 (W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
____________________________________________________________
| Name1 (W) xxx-xxxx (C) xxx-xxxx | Name1 (W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
| Name2 (W) xxx-xxxx (C) xxx-xxxx |Name2 (W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
| Name3 (W) xxx-xxxx (C) xxx-xxxx |Name3(W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
| Name4 (W) xxx-xxxx (C) xxx-xxxx |Name4 (W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|____________________________________________________________
| Name1 (W) xxx-xxxx (C) xxx-xxxx | Name1 (W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
| Name2 (W) xxx-xxxx (C) xxx-xxxx |Name2 (W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
| Name3 (W) xxx-xxxx (C) xxx-xxxx |Name3(W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|
| Name4 (W) xxx-xxxx (C) xxx-xxxx |Name4 (W) xxx-xxxx (C) xxx-xxxx |
| (H) xxx-xxxx (F) xxx-xxxx | (H) xxx-xxxx (F) xxx-xxxx
|

....

is this possible?

/amelia
 
Apparently you want 6 copies of the same four records? What happens if you
have a 5th record?

You could create a table of numbers with a single numeric field
(tblNums.Num) and add records for 1-6. Create another table of letters with
a single text field (tblLetters.Letter) and add records for "A" and "B".

Add these tables to your reports record set and add their fields to the
grid. Set your report to print two columns. Set the sorting and grouping to:
tblNum.Num
NameField
tblLetters.Letter
 
thanks for your feedback, duane, but i've pretty much scrapped this
bothersome project.

back to the drawing board...

/amelia
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top