michaeljohannes
Registered User.
- Local time
- Today, 07:15
- Joined
- May 3, 2007
- Messages
- 67
Hello,
Quick question:
Can someone suggest a bit of code that will show the 2nd column from a combo box in a report rather than the first?
I have used the following code in a form, but it doesn't work the same in a report...
Basically I have a drop down control that shows a letter, and its description. But on the report, I would like to show the description and not the letter (ie the letter is meaningless without the description).
As I said, the code works using an unbound text box on a form, but doesn't work the same in a report. I think my syntax is incorrect.
Any suggestions?
Thanks!
Mike
Quick question:
Can someone suggest a bit of code that will show the 2nd column from a combo box in a report rather than the first?
I have used the following code in a form, but it doesn't work the same in a report...
Code:
Me.MyReportControl_detail = Me!MyReportControl.Column(1)
Basically I have a drop down control that shows a letter, and its description. But on the report, I would like to show the description and not the letter (ie the letter is meaningless without the description).
As I said, the code works using an unbound text box on a form, but doesn't work the same in a report. I think my syntax is incorrect.
Any suggestions?
Thanks!
Mike