Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi All,
I have 3 visuals in my report and one gets filtered based on the Year filter that i have from a unrelated table.
But the other two visuals dont get filtered based on this year filter.
Any idea how can i make them filtered without having a active connection between table1 and year table?
Solved! Go to Solution.
@Anonymous
You can use in values() for unrelated tables with selectedvalue(), e.g.
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Assumed year is disconnected table
measure =
calculate(countrows(Table), filter(Table, Table[Year] in values(Year[Year])))
measure =
calculate(countrows(Table), filter(Table, Table[Year] in allselected(Year[Year])))
or
measure =
calculate(countrows(Table), filter(Table, Table[Year] in values(Year[Year])))
want to plot on visual
measure =
calculate(countrows(Table), filter(Table, Table[Year] = max(Year[Year])))
@amitchandak Thanks Amit.
But i think i need a selector kind of measure to apply it on the visual
For example, if(selectedvalue( year[year])=query1[year],1,0)
but not sure if this is the right way to write
Hi all,
any thoughts about it please... please...
@Anonymous
You can use in values() for unrelated tables with selectedvalue(), e.g.
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
74 | |
63 | |
51 | |
48 |
User | Count |
---|---|
211 | |
86 | |
64 | |
59 | |
56 |