Hi guys, I’m building a report using SSRS with fetchxml query and i’m facing a problem since yesterday.
I couldn’t found a ‘like’ operator for multi-select parameter
Here is my need:
I have a multi-select parameter called @Process_Stage
that I pass to my fetch raquest
<link-entity name="saft_ceopportunitypresalesprocess" from="bpf_opportunityid" to="opportunityid" alias="process" > <attribute name="activestageid" /> <filter type="and"> <condition attribute="activestageidname" operator="contain-values" value="@Process_Stage"/> </filter>
</link-entity>
For example, I need to get a result wether the process stage is equals to ‘4. Offer’ or ‘4. Offer (fast track)’ and so on
Hope I was clear enough
Thank you guys in advance ;)