on 2010 Jul 23 8:16 PM
How can I populate the detail section of a report with a borrowers name that is in either table one or table two?
Hi,
You have to create a formula that will print the name based on your condition. For example:
If {table1.YourName} = '' Then
{table2.YourName}
Else {table1.YourName};
This example checks to see if YourName in Table1 is empty or not. If it's empty then it will grab YourName from Table2 otherwise it will use Table1.
Obviously your condition and table structure will be different but you should be able to build upon this.
Good luck,
Brian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
10 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.