Forum Discussion

Kushagra's avatar
Kushagra
Frequent Visitor
3 years ago
Solved

URL Filtering not working

Hi I have tried filtering powerbi report using url filters, but unable to make it filter the published report   {url of report}/ReportSection?filter='Sheet1'/name eq 'Samuel Jack'   Any help is a...
  • OwenAuger's avatar
    3 years ago

    Hi Kushagra 

    A couple of suggestions that may help:

    1. Does your table Sheet1 contain the column Sheet1[name]?
      Just checking, since the column used in the visual appears to be name column.
      If it doesn't exist, you could create a name column and set it equal to name column
    2. Column names used in URL parameter filters only work if they don't contain spaces.
    3. In my testing, filters will not work if table names are enclosed in single quotes, so remove the single quotes around Sheet1.

    Putting this together, as long as your table Sheet1 contains the column name, this should work:

     

    {url of report}/ReportSection?filter=Sheet1/name eq 'Samuel Jack'