Forum Discussion
Anonymous
3 years agoNot applicable
Passing Special Characters in Query/URL parameter
How do i pass value with special character %? Value: Capitalizations % I have tried 'Capitalizations %25' but it is not passing through the filter
lbendlin
Super User
3 years agoThat's not how the filter URL escaping works. You need to escape the space too.
Filter a report using query string parameters in the URL - Power BI | Microsoft Learn
- Anonymous3 years agoNot applicable
That is for table and column name right?
The value 'Capitalizations %' should be passed as %27Capitalizations%20%25%27 based on the examples i have referred to but somehow my filter is not passing.
- lbendlin3 years ago
Super User
You are correct, your value should be passed as
?filter = Table_x0020_Name/Column_x0020_Name eq 'Capitalizations%20%25'
- Anonymous3 years agoNot applicable
Yes that is what I applied, but unfortunately it is still not showing the filtered value.