Hi Kathleen, still struggling with this one Im afraid. This is the existing
SQL statement in the asp
SELECT * FROM hiremodels WHERE (adults >= ::adults:: AND children >=
::children:: AND suitcases >= ::suitcases:: AND golfer <= ::golfer:: AND
Auto <= ::Auto:: AND aircon <= ::aircon:
ORDER BY pricestandardeuros ASC
So far so good except the aircon field shows "True" (same applies to the
fields "golfer" & "Auto")
Ive tried adding to the statement so if the car has aircon it shows "yes"
but I think my syntax is wrong.
SELECT * FROM hiremodels WHERE (adults >= ::adults:: AND children >=
::children:: AND suitcases >= ::suitcases:: AND golfer <= ::golfer:: AND
Auto <= ::Auto:: AND aircon <= ::aircon:
iif(aircon = true, 'yes',
'no'),ORDER BY pricestandardeuros ASC
Can you help a little more please
Thanks Mick