Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join 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.
| User | Count |
|---|---|
| 23 | |
| 19 | |
| 19 | |
| 17 | |
| 11 |
| User | Count |
|---|---|
| 55 | |
| 55 | |
| 41 | |
| 40 | |
| 30 |