I have a report in Report Builder that works fine with a Parameter Field (@job_no). I now wish to add a second parameter encapsulated inside a LIKE argument. Something along the lines of
WHERE (dbo.jm_job.job_no = (@job_no)) AND (dbo.jm_work_order.wo_desc LIKE %'(@wo_desc)'%)
I've tried various styles or argument, but I'm missing something. Thanks
Giles