P
Paul Fenton
We have a tee-shirt orders table consisting of the following fields:
Name
Small
Medium
Large
XL
2XL
3XL
etc.
For each name, we'll usually have just one shirt ordered in one of
the sizes. I'm trying to print mailing labels and can come up with
this.
John Smith
SM MD LG 1
XL 2XL 3XL
Mary Jones
SM MD LG
XL 1 2XL 3XL
What I want to see is this:
John Smith
LG 1
Mary Jones
XL 1
Is there a way to suppress those labels printing when the value for
that particular field is 0 or null? I was trying something like
If isnull(me!txtSM) or me!txtSM = 0 then
me!lblSMl.visible = False
End If
But I can't figure out where in the report to put it. Detail section?
Print? Paint? Format?
Thanks for any help
(e-mail address removed)
Name
Small
Medium
Large
XL
2XL
3XL
etc.
For each name, we'll usually have just one shirt ordered in one of
the sizes. I'm trying to print mailing labels and can come up with
this.
John Smith
SM MD LG 1
XL 2XL 3XL
Mary Jones
SM MD LG
XL 1 2XL 3XL
What I want to see is this:
John Smith
LG 1
Mary Jones
XL 1
Is there a way to suppress those labels printing when the value for
that particular field is 0 or null? I was trying something like
If isnull(me!txtSM) or me!txtSM = 0 then
me!lblSMl.visible = False
End If
But I can't figure out where in the report to put it. Detail section?
Print? Paint? Format?
Thanks for any help
(e-mail address removed)