WilliamMathias
Programmer
Hi,
I've got a make table query which is passed a parameter
parDealType of type integer. For various reasons I can't use a where clause.
I want to pass a value for parDealType of "1 or 2"
My query works fine if I'm passing just 1
My query works fine if I'm passing just 2
but if I want all the DealTypeIDs that are either 1 or 2
To Illustrate:
My query has the following column:
Field DealTypeID
table tblCalcs
Criteria [parDealType]
Any Ideas? Will
I've got a make table query which is passed a parameter
parDealType of type integer. For various reasons I can't use a where clause.
I want to pass a value for parDealType of "1 or 2"
My query works fine if I'm passing just 1
My query works fine if I'm passing just 2
but if I want all the DealTypeIDs that are either 1 or 2
To Illustrate:
My query has the following column:
Field DealTypeID
table tblCalcs
Criteria [parDealType]
Any Ideas? Will