Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Power BI Community - I was wondering if you could help figure out how I can filter two columns with one table.
So I used the below formula to filter the SubRpDate and it's working fine.
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:
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.