Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 4 | |
| 4 | |
| 3 |