Printing a different invoice layoutbased on check box

  • Thread starter Thread starter chang
  • Start date Start date
C

chang

How can I set it up that it will use a diffrent report view based on wich
checkbox is selected?

rinting a different invoice layout based on check box
 
chang said:
How can I set it up that it will use a diffrent report view based on wich
checkbox is selected?

rinting a different invoice layout based on check box

A simple If ... Then ... Else statement ought to work:

In a form or report:

If Me.chkWhatever = True Then
' Do something
' yada yada
Else
' Do Something else
' Other yada yada
End If
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
Back
Top