Forum Discussion
Anonymous
4 years agoNot applicable
After Advance Filtering, other visuals not getting exact filtered values.
Hi, I am using Advance JsonFilter to filter numbers between a range let conditions: IAdvancedFilterCondition[] = [];
conditions.push({
operator: "GreaterThanOrEqual",
...
Anonymous
4 years agoNot applicable
Hi Anonymous ,
Please review the following links, hope they can help you.
The Visual Filters API in Power BI visuals
Best Regards
Anonymous
4 years agoNot applicable
Thanks for the reply.
instead of directly using the AdvancedFilter like this
let filter = new AdvancedFilter(this.filterTarget, "And", conditions);
Sample Slicer used
let filter: IAdvancedFilter = { $schema: "http://powerbi.com/product/schema#advanced", ...(new AdvancedFilter(this.filterTarget, "And", conditions)) }
I made the changes and checked but this did not solve my issue.
To be precise
The visual is not filtering values in the level of ten's. 101 to 199 are rounding to 100 and so on