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
setis
Post Partisan
Post Partisan

USERELATIONSHIP with several conditions

Dear experts, I am struggling with a measure in which I'm trying to combine USERELATIONSHIP and several filters.

 

My measure is thefollowing:

Membership Fee=
CALCULATE (
    [TotalAmountGLEntry];
    USERELATIONSHIP ( '$G_L Entry'[Posting Date]; 'Date'[Date] );
    KEEPFILTERS (
        FILTER (
            ALL (
                '$G_L Entry'[G_L Account No_];
                '$G_L Entry'[Document Type];
                '$G_L Entry'[CUSTOMER]
            );
            '$G_L Entry'[G_L Account No_] = "3011"
                || '$G_L Entry'[G_L Account No_] = "3016"
                || '$G_L Entry'[Document Type] = 2
                || '$G_L Entry'[CUSTOMER] <> BLANK ()
        )
    )
)


My problem is that USERELATIONSHIP works but the rest of the filters do not

 

I have tried different things like combining FILTER and VALUES instead of KEEPFILTERS but the problem is that I can't get both the USERELATIONSHIP and the FILTERS to work at the same time. 

 

Can anyone see where the error is?

 

Thank you in advance 

1 ACCEPTED SOLUTION

@Mariusz and @amitchandak 

 

It worked for me doing:

 

 

 

 

Membership Fee = 
VAR Acc3011 = 
CALCULATE (
    [TotalAmountGLEntry];
    USERELATIONSHIP ( '$G_L Entry'[Posting Date]; 'Date'[Date] );
    USERELATIONSHIP('$G_L Entry'[CUSTOMER];'All Customers'[No_]);
    KEEPFILTERS ('$G_L Entry'[G_L Account No_] = "3011");
    KEEPFILTERS ('$G_L Entry'[Document Type] = 2);
    KEEPFILTERS('$G_L Entry'[CUSTOMER] <> BLANK())

        )
VAR Acc3016 = 
CALCULATE (
    [TotalAmountGLEntry];
    USERELATIONSHIP ( '$G_L Entry'[Posting Date]; 'Date'[Date] );
    USERELATIONSHIP('$G_L Entry'[CUSTOMER];'All Customers'[No_]);
    KEEPFILTERS ('$G_L Entry'[G_L Account No_] = "3016");
    KEEPFILTERS ('$G_L Entry'[Document Type] = 2);
    KEEPFILTERS('$G_L Entry'[CUSTOMER] <> BLANK())

        )
RETURN
Acc3011+Acc3016

 

 

 

View solution in original post

11 REPLIES 11
Mariusz
Community Champion
Community Champion

Hi @setis 

 

Try this, if not working try without KEEPFILTERS

Membership Fee = 
CALCULATE (
    [TotalAmountGLEntry];
    KEEPFILTERS (
        FILTER (
            CALCULATETABLE(
                ALL (
                    '$G_L Entry'[G_L Account No_];
                    '$G_L Entry'[Document Type];
                    '$G_L Entry'[CUSTOMER]
                );
                USERELATIONSHIP ( '$G_L Entry'[Posting Date]; 'Date'[Date] )
            );
            '$G_L Entry'[G_L Account No_] = "3011"
                || '$G_L Entry'[G_L Account No_] = "3016"
                || '$G_L Entry'[Document Type] = 2
                || '$G_L Entry'[CUSTOMER] <> BLANK ()
        )
    )
)
Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

 

@Mariusz Thanks again!

 

Unfortunately it didn't work either with or without KEEPFILTERS. I'm getting lines for all different G_L Account No_

@Mariusz and @amitchandak 

 

It worked for me doing:

 

 

 

 

Membership Fee = 
VAR Acc3011 = 
CALCULATE (
    [TotalAmountGLEntry];
    USERELATIONSHIP ( '$G_L Entry'[Posting Date]; 'Date'[Date] );
    USERELATIONSHIP('$G_L Entry'[CUSTOMER];'All Customers'[No_]);
    KEEPFILTERS ('$G_L Entry'[G_L Account No_] = "3011");
    KEEPFILTERS ('$G_L Entry'[Document Type] = 2);
    KEEPFILTERS('$G_L Entry'[CUSTOMER] <> BLANK())

        )
VAR Acc3016 = 
CALCULATE (
    [TotalAmountGLEntry];
    USERELATIONSHIP ( '$G_L Entry'[Posting Date]; 'Date'[Date] );
    USERELATIONSHIP('$G_L Entry'[CUSTOMER];'All Customers'[No_]);
    KEEPFILTERS ('$G_L Entry'[G_L Account No_] = "3016");
    KEEPFILTERS ('$G_L Entry'[Document Type] = 2);
    KEEPFILTERS('$G_L Entry'[CUSTOMER] <> BLANK())

        )
RETURN
Acc3011+Acc3016

 

 

 

Mariusz
Community Champion
Community Champion

Hi @setis 

 

Try this 

Membership Fee = 
CALCULATE(
    CALCULATE (
        [TotalAmountGLEntry];
        KEEPFILTERS (
            FILTER (
                ALL (
                    '$G_L Entry'[G_L Account No_];
                    '$G_L Entry'[Document Type];
                    '$G_L Entry'[CUSTOMER]
                );
                '$G_L Entry'[G_L Account No_] = "3011"
                    || '$G_L Entry'[G_L Account No_] = "3016"
                    || '$G_L Entry'[Document Type] = 2
                    || '$G_L Entry'[CUSTOMER] <> BLANK ()
            )
        )
    );
    USERELATIONSHIP ( '$G_L Entry'[Posting Date]; 'Date'[Date] )
)
Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.



Dear @Mariusz 

Thanks for your answer. It didn´t work for me. 

 

Neither the filters or the userelationship is working on this one. 

amitchandak
Super User
Super User

In "calculate" use suitable function like sumx, countx on [TotalAmountGLEntry] and the move filter in the first parameter of table name and try.

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

My Recent Blog -
https://community.powerbi.com/t5/Community-Blog/Power-BI-Working-with-Non-Standard-Time-Periods/ba-p...

https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Dear @amitchandak 

Thanks for your answer. 

I'm not sure I understood exactly what you mean. 

 

I tried this, but it didn't work:

Membership Fee = 
CALCULATE (
    SUMX(       
         KEEPFILTERS (
        FILTER (
            ALL (
                '$G_L Entry'[G_L Account No_];
                '$G_L Entry'[Document Type];
                '$G_L Entry'[CUSTOMER]
            );
            '$G_L Entry'[G_L Account No_] = "3011"
                || '$G_L Entry'[G_L Account No_] = "3016"
                || '$G_L Entry'[Document Type] = 2
                || '$G_L Entry'[CUSTOMER] <> BLANK ()
        )
    );
    SUM('$G_L Entry'[Amount]));USERELATIONSHIP('$G_L Entry'[Posting Date];'Date'[Date])
)

 

Try Like. No need sum inside sumx, unless there is a need. Also ,check if it can work without keep filter.

 

Membership Fee = 
CALCULATE (
    SUMX(       
         KEEPFILTERS (
        FILTER (
            ALL (
                '$G_L Entry'[G_L Account No_];
                '$G_L Entry'[Document Type];
                '$G_L Entry'[CUSTOMER]
            );
            '$G_L Entry'[G_L Account No_] = "3011"
                || '$G_L Entry'[G_L Account No_] = "3016"
                || '$G_L Entry'[Document Type] = 2
                || '$G_L Entry'[CUSTOMER] <> BLANK ()
        )
    );
    ('$G_L Entry'[Amount]));USERELATIONSHIP('$G_L Entry'[Posting Date];'Date'[Date])
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

If this can work

Membership Fee = 
CALCULATE (
    SUMX(       
         
        FILTER (
            '$G_L Entry';
            '$G_L Entry'[G_L Account No_] = "3011"
                || '$G_L Entry'[G_L Account No_] = "3016"
                || '$G_L Entry'[Document Type] = 2
                || '$G_L Entry'[CUSTOMER] <> BLANK ()
        )
    ;
    ('$G_L Entry'[Amount]));USERELATIONSHIP('$G_L Entry'[Posting Date];'Date'[Date])
)
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Dear @amitchandak 
In this one: 

Membership Fee = 
CALCULATE (
    SUMX(       
         
        FILTER (
            '$G_L Entry';
            '$G_L Entry'[G_L Account No_] = "3011"
                || '$G_L Entry'[G_L Account No_] = "3016"
                || '$G_L Entry'[Document Type] = 2
                || '$G_L Entry'[CUSTOMER] <> BLANK ()
        )
    ;
    ('$G_L Entry'[Amount]));USERELATIONSHIP('$G_L Entry'[Posting Date];'Date'[Date])
)


USERELATIONSHIP works but the filters do not. 

 If possible please share a sample pbix file after removing sensitive information.
Thanks

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

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
Top Kudoed Authors