Forum Discussion
Palazhi
8 years agoRegular Visitor
Power BI Report level Filters not working properly in ASP.NET MVC application
Hi All, My ASP.NET MVC application's URL use three parameters, that is Region, Subregion and Pagenumber from Power BI basic filter. When I run application which gives right results for Region and Pa...
Palazhi
8 years agoRegular Visitor
Hi,
Thank you for responding back to me. I have made filterpane true, now getting error in filter pane saying ''This filter can't be used since the correaponding field is invalid '. By default subregion selects ''All'' option.
Thank you for responding back to me. I have made filterpane true, now getting error in filter pane saying ''This filter can't be used since the correaponding field is invalid '. By default subregion selects ''All'' option.
- v-ljerr-msft8 years agoMicrosoft Employee
Hi Palazhi,
I have made filterpane true, now getting error in filter pane saying ''This filter can't be used since the correaponding field is invalid '. By default subregion selects ''All'' option.
I can reproduce the same issue when the table name or column name in the filter is not match with the real table name and column name in your model. Note that they are case sensitive. So could you go to check if the table name and column name are correctly set in your filter? :smileyhappy:
const filterSubRegion = { $schema: "http://powerbi.com/product/schema#basic", target: { table: "Sub Region Lookup", column: "Sub Region" }, operator: "In", values: subRegion };Regards