C
ChuckW
Hi,
I have a Form called SelectCustomer with a combo box
called ComboCustomer in which as sales rep can select one
of their customers. I also have two reports in my Form
below the combo box called 2003Sales and 2004Sales. They
are called CmdReport2003 and CmdReport2004. They are
based on a query which has VBA code in the customer name
field. This code is
Like IIf(IsNull([Forms]![SelectCustomer]!
[ComboCustomer]),"*",[Forms]![SelectCustomer]!
[ComboCustomer])
Right now I can select a customer from my combo box and
then click on one of the reports. I will get all
transactions for a given customer for 2003 or 2004
depending on which report I click. What I want to do is
to also create two text boxes in which a sales rep can
plug in a beginning and ending date. Below would be a
button for a report which would give you all sales for a
customer based on the dates you select. Can anyone tell
me how to do this?
Thanks,
Chuck
I have a Form called SelectCustomer with a combo box
called ComboCustomer in which as sales rep can select one
of their customers. I also have two reports in my Form
below the combo box called 2003Sales and 2004Sales. They
are called CmdReport2003 and CmdReport2004. They are
based on a query which has VBA code in the customer name
field. This code is
Like IIf(IsNull([Forms]![SelectCustomer]!
[ComboCustomer]),"*",[Forms]![SelectCustomer]!
[ComboCustomer])
Right now I can select a customer from my combo box and
then click on one of the reports. I will get all
transactions for a given customer for 2003 or 2004
depending on which report I click. What I want to do is
to also create two text boxes in which a sales rep can
plug in a beginning and ending date. Below would be a
button for a report which would give you all sales for a
customer based on the dates you select. Can anyone tell
me how to do this?
Thanks,
Chuck