Hi.
I know this has to be easy, but I can't get it to work. The report is generated from a form.... In my report header I have the following code in a text box.
="Test Type:" & [Forms]![frmMain]![testtype]
All that is showing up is the number that is stored in the database.... IE
1=test
2=test2
so it looks like this
Test Type: 1 (TypeID)
When I want it to say
Test Type: Test (Type)
I have tried using the column(1) IE
="Test Type:" & [Forms]![frmMain]![testtype.column(1)]
I have also tried:
="Test Type:" & Forms!frmMain![tblLUtesttype.type]
(tblLUtesttype is the table that I use as a drop down for the different test types...)
but that doesn't work.. how can I get the name not the number..
Thanks
R~
I know this has to be easy, but I can't get it to work. The report is generated from a form.... In my report header I have the following code in a text box.
="Test Type:" & [Forms]![frmMain]![testtype]
All that is showing up is the number that is stored in the database.... IE
1=test
2=test2
so it looks like this
Test Type: 1 (TypeID)
When I want it to say
Test Type: Test (Type)
I have tried using the column(1) IE
="Test Type:" & [Forms]![frmMain]![testtype.column(1)]
I have also tried:
="Test Type:" & Forms!frmMain![tblLUtesttype.type]
(tblLUtesttype is the table that I use as a drop down for the different test types...)
but that doesn't work.. how can I get the name not the number..
Thanks
R~
Last edited: