Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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 |
|---|---|
| 42 | |
| 34 | |
| 28 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 63 | |
| 57 | |
| 41 | |
| 21 | |
| 20 |