P
PAOLO
So how if I design a report which has labels describing each field and I
want to make invisible the ones that don't have anything typed in (by saying
invisible I mean like can shrink where you can't even see on the report
there was another field set up) is it possible to write a VBA code like
If (IsNull([fieldname])) Then
[labelname]???? canshrink
End If
Something similar to this?
Thanks for your help
want to make invisible the ones that don't have anything typed in (by saying
invisible I mean like can shrink where you can't even see on the report
there was another field set up) is it possible to write a VBA code like
If (IsNull([fieldname])) Then
[labelname]???? canshrink
End If
Something similar to this?
Thanks for your help
Arvin Meyer said:No, You cannot have anything else visible on the same line.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access
reportPAOLO said:Thanks Fred
So if you set up the field to "can shrink" and the field is blank will
access hide the label linked to that as well?