Help needed..
Using CR XI, Access 2000
I have two tables...
1) MRCOL --Mater table holding Table name, DBfield name, Display Name
2) TCON----Contact Info
The MRCOL table
Table_name DBfield_name Display_Name
TCON CONFNM First Name
TCON CONLNM Last Name
TCON CONCNM Company Name
TCON Table
CONFNM CONLNM CONCNM
Peter Smith Dell
John Doe HP
Paul Proctor IBM
I am passing parameters to the report and it should display First Name, Last Name, Company Name based on what the user selects to display from the ListView.
I have 3 parameters Param1 thru Param3.
In the detail section I have @col1 thru @col3. col1 thru col3 have same formula except the Param#
@col1 formula looks like below .
Select (?Param1)
Case MRCOL.Display_Name: "{" & {MRCOL.DBfield_Name} & "
default: ""
This is displaying {TCON.CONFNM} if I pass First Name
For example report output looks like this:
First Name Last Name Company Name
{TCON.CONFNM} {TCON.CONLNM} {TCON.CONCNM}
{TCON.CONFNM} {TCON.CONLNM} {TCON.CONCNM}
{TCON.CONFNM} {TCON.CONLNM} {TCON.CONCNM}
How do I get the actual names ? I am sure I am missing something very obvious.
Using CR XI, Access 2000
I have two tables...
1) MRCOL --Mater table holding Table name, DBfield name, Display Name
2) TCON----Contact Info
The MRCOL table
Table_name DBfield_name Display_Name
TCON CONFNM First Name
TCON CONLNM Last Name
TCON CONCNM Company Name
TCON Table
CONFNM CONLNM CONCNM
Peter Smith Dell
John Doe HP
Paul Proctor IBM
I am passing parameters to the report and it should display First Name, Last Name, Company Name based on what the user selects to display from the ListView.
I have 3 parameters Param1 thru Param3.
In the detail section I have @col1 thru @col3. col1 thru col3 have same formula except the Param#
@col1 formula looks like below .
Select (?Param1)
Case MRCOL.Display_Name: "{" & {MRCOL.DBfield_Name} & "
default: ""
This is displaying {TCON.CONFNM} if I pass First Name
For example report output looks like this:
First Name Last Name Company Name
{TCON.CONFNM} {TCON.CONLNM} {TCON.CONCNM}
{TCON.CONFNM} {TCON.CONLNM} {TCON.CONCNM}
{TCON.CONFNM} {TCON.CONLNM} {TCON.CONCNM}
How do I get the actual names ? I am sure I am missing something very obvious.