Hi,
Can Someone Please help.
I am using Duane Hookom's Concatenate Module.
I am using this right now in my query
I have this
Ticket(s): Concatenate("SELECT [TicketType] FROM [PipingQualificationTickets tbl] WHERE WelderID =" & [Welders tbl].[WelderID])
this work but it only Concatenates All the TicketTypes this way.
I want it to Concatenates but filter to only the TicketTypes That do not have a check mark in the checkBoxes - [SeeSupercededTicket] or [TicketOnFileCanNotUse] (Both of these are checkBoxes)
I tried this
Ticket(s): Concatenate("SELECT [TicketType] FROM [PipingQualificationTickets tbl] WHERE WelderID =" & [Welders tbl].[WelderID] " & OR [SeeSupercededTicket]=False OR [TicketOnFileCanNotUse]=False)
It gives a run time error
Invald SQL Staement; expected 'Delete', 'INSERT', 'PROCEDURE', 'SELECT', or UPDATE
I tried a few more combinations
I am not sure how to add this extra statement into this code.
There is some way to write this and I am not sure how to.
Thanks BBryan
Can Someone Please help.
I am using Duane Hookom's Concatenate Module.
I am using this right now in my query
I have this
Ticket(s): Concatenate("SELECT [TicketType] FROM [PipingQualificationTickets tbl] WHERE WelderID =" & [Welders tbl].[WelderID])
this work but it only Concatenates All the TicketTypes this way.
I want it to Concatenates but filter to only the TicketTypes That do not have a check mark in the checkBoxes - [SeeSupercededTicket] or [TicketOnFileCanNotUse] (Both of these are checkBoxes)
I tried this
Ticket(s): Concatenate("SELECT [TicketType] FROM [PipingQualificationTickets tbl] WHERE WelderID =" & [Welders tbl].[WelderID] " & OR [SeeSupercededTicket]=False OR [TicketOnFileCanNotUse]=False)
It gives a run time error
Invald SQL Staement; expected 'Delete', 'INSERT', 'PROCEDURE', 'SELECT', or UPDATE
I tried a few more combinations
I am not sure how to add this extra statement into this code.
There is some way to write this and I am not sure how to.
Thanks BBryan