I currently have a form which serves as an invoice. It pulls information from a query and a form, and creates an invoice from them. Certain text boxes on the report don't need to be there if the value within them is 0. I'm trying to figure out how to get access to recognize to make the visibility property = 0 when the value in the box is 0. So far I have tried adding a line to the button which opens the report (access macro, not VBA), using the setproperty value, where control name is 'Textbox', and visibility argument is something like 'Switch([Textbox]=0, 0, [Textbox]>0, -1), but this results in a textbox which is always invisible.
Any help is greatly appreciated.
Any help is greatly appreciated.