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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
v-jayw-msft
Community Support
Community Support

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.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.