Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I'm currently attempting to catch an unexpected error occurring within an asynchronous promise, specifically when updating the filter of a Power BI embedded report. However, I'm encountering difficulty in capturing this error within the catch block.
Here's a snippet of my code:
return new Promise((resolve, reject) => {
let rep_res = report.updateFilters(models.FiltersOperations.Add, [filter, filter2])
.then(() => {
resolve('Filter Applied');
})
.catch((error) => {
reject("Failed to apply filters: " + error);
});
});
The error occurs after logging "Filter Applied" in the console and is as follows:
Error : Error: \<rect\> attribute x: Expected length, "NaN".
I've confirmed that this error originates from the updateFilters function because removing the code associated with it eliminates the error.
The filter objects appear to be correct, as the error only occurs with a specific report.
I've consulted the Power BI documentation regarding the addition of filters to reports, but I couldn't find any guidance on error handling.
powerbi documentation to add reports: https://learn.microsoft.com/en-us/javascript/api/overview/powerbi/control-report-filters#add-new-fil...
In an attempt to resolve this issue, I've tried several approaches, including:
Any assistance or insights into resolving this issue would be greatly appreciated. Thank you.
Hi @nckpedersen ,
Depending on the error message displayed, you can check the data used, possibly due to data inconsistencies or data type mismatches, to ensure that it is formatted correctly, that the data to be filtered does not contain non-numeric values and contains only numeric values
Data types in Power BI Desktop - Power BI | Microsoft Learn
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |