March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I want to filter rows in table A based on the average of an unrelated column in table B. Both tables are unrelated.
Basically, the logic of filtering should be-
(average of column in table B) <= filtered rows >= (average of column in table B + 10000)
Kindly help. Thank you.
Solved! Go to Solution.
SampleTable1
Val |
5 |
6 |
5 |
8 |
9 |
2 |
4 |
1 |
2 |
SampleTable2
Val |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
Sample Filter measure
Filter =
var _avg= AVERAGE(SampleTable2[Val])
var _selectedVal= SELECTEDVALUE(SampleTable1[Val])
var _result= IF(_selectedVal>=_avg&& _selectedVal<=_avg+2,"Yes","No")
//you have to replace 2 with required value.
return _result
Apply this measure as a visual level filter of the 1st table.
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
SampleTable1
Val |
5 |
6 |
5 |
8 |
9 |
2 |
4 |
1 |
2 |
SampleTable2
Val |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
Sample Filter measure
Filter =
var _avg= AVERAGE(SampleTable2[Val])
var _selectedVal= SELECTEDVALUE(SampleTable1[Val])
var _result= IF(_selectedVal>=_avg&& _selectedVal<=_avg+2,"Yes","No")
//you have to replace 2 with required value.
return _result
Apply this measure as a visual level filter of the 1st table.
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |