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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
akagiz
Frequent Visitor

Power BI Embedded OData filter "or" operator

Hi there

 

i am developing an asp.net mvc webapp that is integrating Power BI Embedded, which works just fine.

I want to filter the DataSet with an oDataFilter like that:

    load: function () {
        var computedStyle = window.getComputedStyle(this.element);
        var accessToken = this.getAccessToken();

        var initEventArgs = {
            message: {
                action: this.options.loadAction,
                accessToken: accessToken,
                oDataFilter: "Metrics/project eq 'auth'",
                width: computedStyle.width,
                height: computedStyle.height
            }
        };

        powerbi.utils.raiseCustomEvent(this.element, 'embed-init', initEventArgs);
        this.iframe.contentWindow.postMessage(JSON.stringify(initEventArgs.message), '*');
    }

This works like it should, i just get records which have the value "auth" in the row "project". However when i am extending the oDataFilter like that:

...
oDataFilter: "Metrics/project eq 'auth' or Metrics/project eq 'beta'",
...

I expect to get rows that have either the value "auth" or the value "beta" in the row "project". But it now completely disregards the filter passed to it and gives me all the records in that DataSet.

 

How do i achieve that particular filter scenario?

Greetings

0 REPLIES 0

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.

Top Solution Authors