Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
nckpedersen
Helper I
Helper I

Guaranteeing filter implementation prior to render

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:

  • Storing the response of the then method and the promise itself in variables to find any trace of error
  • Implementing try-catch blocks
  • Using setTimeout to address asynchronous behavior
  • Utilizing window.onerror
  • Adding a setTimeout function before resolving the promise

Any assistance or insights into resolving this issue would be greatly appreciated. Thank you.

1 REPLY 1
Anonymous
Not applicable

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.

 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.