Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi all,
we are developing our own visual that creates filters based on the json filter (applyJsonFilter). this works great with all dates, but we are having problems with the date hierarchy. We have the following hierarchy in a table named 'Cases' and if I filter on the field 'Year' using a normal slider it will show that it is filtered on the field 'Cases'[Year].
Creating a basic filter on exactly this field from within our visual doas not create a filter in the report. The strange thing is, that it will be created in the jsonFilters array of the visualUpdateOptions object.
We are creating the filter the following way, of course in our code the values are not static like in th example. But these are the values that will be used in our example which is not working.
const target = {
table: 'Cases',
column: 'Year',
};
const values = [2018];
const basicFilter: IBasicFilter = {
$schema: 'https://powerbi.com/product/schema#basic',
filterType: FilterType.Basic,
operator: 'In',
target,
values,
};
this._visualHost.applyJsonFilter([basicFilter], 'general', 'filter', FilterAction.merge);
What are we doing wrong? Is there no way to filter on date hierarchies in custom visuals?
Best regards,
lucmax
Solved! Go to Solution.
Figured it out, we needed to get the name from the source.entity object within the identityExprs array. Thats the, I guess technical name, of the date hierarchy table. If we set a filter on this table everything works as expected.
Figured it out, we needed to get the name from the source.entity object within the identityExprs array. Thats the, I guess technical name, of the date hierarchy table. If we set a filter on this table everything works as expected.
Hi @lucmax ,
I found an official document, I do not know whether it will be helpful for you.
Add bookmark support for Power BI custom visuals - Power BI | Microsoft Learn
Best Regards
Community Support Team _ chenwu zhu
Hi @v-chenwuz-msft ,
thank you for the answer, but I'm afraid that won't help. When we filter at the hierarchy level, we do not have a complete date object, only the individual values.
If I filter on the underlying complete date, everything works as intended. Only the hierarchy causes problems.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.