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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Filter multiple Fields

Hi Power BI Community - I was wondering if you could help figure out how I can filter two columns with one table.

 

example.PNG

 

So I used the below formula to filter the SubRpDate and it's working fine. 

Total Sub Award Dollar = CALCULATE([Total FedOrigSubAmtNonDBE]+[Total Sub DBEs Dollars], USERELATIONSHIP('Sub List'[SubRptDate], 'Calendar Table'[Date]))
 
But when I tried to use this formula to filter both SubRpDate and DateStart, I get an error message saying that there's an ambigous relationship
Total Sub Award Dollar = CALCULATE([Total FedOrigSubAmtNonDBE]+[Total Sub DBEs Dollars], USERELATIONSHIP('Sub List'[SubRptDate], 'Calendar Table'[Date]),USERELATIONSHIP('Sub List'[SubRptDate], 'Calendar Table'[Date]))
 
What I wanted to do is to be able to filter both SubRpDate and DateStart using the date from the calendar Table.
 
Thank you in advanced. 
 

 

1 REPLY 1
Anonymous
Not applicable

Hi @mbenjelloun,

 

Please Use SELECTEDVALUE() instead of USERELATIONSHIP():
Total Sub Award Dollar =

VAR sv =

    FORMAT ( SELECTEDVALUE ( 'Calendar Table'[Date].[Year] ), "" )

RETURN

       IF (

           NOT ( ISFILTERED ( 'Calendar Table'[Date].[Year] ) ),

            MAX ( 'Sub List'[Total FedOrigSubAmtNonDBE] )

               + MAX ( 'Sub List'[Total Sub DBEs Dollars] ),

               IF (

               FORMAT ( MAX ( 'Sub List'[SubRptDate] ), "YYYY" ) = sv

                   || FORMAT ( MAX ( 'Sub List'[DateStart] ), "YYYY" ) = sv,

               MAX ( 'Sub List'[Total FedOrigSubAmtNonDBE] )

                   + MAX ( 'Sub List'[Total Sub DBEs Dollars] ),

               BLANK ()

               )

    )

Result would be shown as below:

1.PNG

2.PNG

3.PNG

BTW, Pbix as attached. Hopefully works for you.

 

Best Regards,

Jay

 

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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