Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Filter a Power BI Tile using query string paramaters and IN operator.

I'm trying to filter a power Bi Tile on my PowerApps application, as it written in this article: https://learn.microsoft.com/en-us/power-bi/collaborate-share/service-url-filters

It's works well with the "eq" operator but when I tried to use the "in" operator it doesn't work.

For example adding this to the end of the TileUrl works:

 

&filter=Etat_Consigne_Approb/Approbateur eq ('XXXX xxxx')

 

But this doesn't work:

 

&filter=Etat_Consigne_Approb/Approbateur in ('XXXX xxxx','ZZZZ zzzz')

 

 

Thanks by advance

 

I can provide other info if necessary

1 ACCEPTED SOLUTION
v-yueyunzh-msft
Community Support
Community Support

Hi , @Anonymous 

According to my research, each value in the set after the in operator needs to be separated by a space, you can try something like this

&filter=Etat_Consigne_Approb/Approbateur in ('XXXX xxxx', 'ZZZZ zzzz')

Here is an introduction document about the operator in the URL filter, you can see and try according to the example inside:

OData IN Operator filter function - OData | Microsoft Learn

 

Best Regards,

Aniya Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

3 REPLIES 3
Alzo
New Member

Was this solved? I can use the 'in' operator for a full report but not for a tile?

v-yueyunzh-msft
Community Support
Community Support

Hi , @Anonymous 

According to my research, each value in the set after the in operator needs to be separated by a space, you can try something like this

&filter=Etat_Consigne_Approb/Approbateur in ('XXXX xxxx', 'ZZZZ zzzz')

Here is an introduction document about the operator in the URL filter, you can see and try according to the example inside:

OData IN Operator filter function - OData | Microsoft Learn

 

Best Regards,

Aniya Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Hi, the space also doesn't work. Any other fixes? The IN operator is not working via Power Apps for a Power BI tile. I've tried everything includign the allow new API, special characters, etc.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors