I have 4 sets of options buttons (radio buttons) on a form. When the user orders something they select a button to further identify the product. (We make numbered plates, and frequently they order a series of odd, even, or all.)
The options group stores the value 1, 2, or 3 in the table (Data Type: Text). However, on a report (where I am making them a receipt), I want it to show what they actually selected: "odd, even, or all".
This is how I have done it:
I have 4 unbound text boxes, named Text96, Text98, Text99, and Text100. The control source is set to
This displays the information I want them to see. And it works, by the way. ;-)
However, in many cases, the user only orders one series, so the last three options groups would be Null. So in my text boxes shown above, I get this "#Type!" message in the textbox on the report/receipt. I don't want my customer to see that. How can I supress it, hide it, remove it, get it GONE!? :-)
Thanks so much in advance.
The options group stores the value 1, 2, or 3 in the table (Data Type: Text). However, on a report (where I am making them a receipt), I want it to show what they actually selected: "odd, even, or all".
This is how I have done it:
I have 4 unbound text boxes, named Text96, Text98, Text99, and Text100. The control source is set to
Code:
=Choose([SeriesType1],"Odd","Even","All") =Choose([SeriesType2],"Odd","Even","All") =Choose([SeriesType3],"Odd","Even","All") =Choose([SeriesType4],"Odd","Even","All")
However, in many cases, the user only orders one series, so the last three options groups would be Null. So in my text boxes shown above, I get this "#Type!" message in the textbox on the report/receipt. I don't want my customer to see that. How can I supress it, hide it, remove it, get it GONE!? :-)
Thanks so much in advance.
Comment