I have two tables. One with the expense incurred and another with the desciption of the expense.
they might look something likes this.
table 1
index
amount
table 2
index
line number
description
I link the two tables with the index.
With a longer description I might have two or more line numbers
so the data would look like this
table 1
index 1
amount $2.00
table 2
index 1
line number 1
description 20 min phone call from ext 5625 to
index 1
line number 2
desciption Apex Inc.
What I want to do is print the desciption and the amount on one line but can't find a way to merge to the two desciption fields.
I can get it to print as follows
20 min phone call from ext 5625 to $2.00
Apex Inc.
By grouping on the index # and supressing the detail if the line number is greater than 1, and having the desciption and detail in the header and only the desciption in the detail.
But I want it to look as follows
20 min phone call from ext 5625 to Apex Inc. $2.00
Any ideas?
they might look something likes this.
table 1
index
amount
table 2
index
line number
description
I link the two tables with the index.
With a longer description I might have two or more line numbers
so the data would look like this
table 1
index 1
amount $2.00
table 2
index 1
line number 1
description 20 min phone call from ext 5625 to
index 1
line number 2
desciption Apex Inc.
What I want to do is print the desciption and the amount on one line but can't find a way to merge to the two desciption fields.
I can get it to print as follows
20 min phone call from ext 5625 to $2.00
Apex Inc.
By grouping on the index # and supressing the detail if the line number is greater than 1, and having the desciption and detail in the header and only the desciption in the detail.
But I want it to look as follows
20 min phone call from ext 5625 to Apex Inc. $2.00
Any ideas?