I have a spreadsheet containing names, addresses,city, etc.
in columns a b c d e f g h
printing is fine however I would like to be able to;
print a b c then print d e f g h on the next line then go to the next record
for the whole sheet and repeat.
then each record would print as;
a b c
d e f g h
Does PM have the capability to do something like this?
thanks
JFC
record printing
Re: record printing
Don't know if there is a way in PlanMaker, but when you import your database into TextMaker and use the label function there it should be easy (Insert > List/label...).
Re: record printing
Your objective can be met fairly easily. Using an address table example of four columns (fields) entitled FN, LN, Address, and Synopsis. To create a cell with the first and last name on one line and the address on another, use a formula in the Synopsis field. The Synopsis formula would be FN & " " & LN & CHAR(10) & Address. The CHAR(10) generates a line feed similar to the manual use of CTRL-ENTER. For a record with Peter, Conroy, Maine, the Synopsis field would create:
Peter Conroy
Maine
Peter Conroy
Maine