Forum Discussion
Measure to filter two seperate tables
- Anonymous9 years ago
Hi RafDelgado,
In your second table, create a measure using the following formula.
s = IF(HASONEVALUE(t2[CoreCount]),VALUES(t2[CoreCount]),BLANK())
In your first table, create a measure using the following formula.
checkresult = IF(MAX(t1[CPU cores])>=[s]&&MAX(t1[Memory:GB])>=2,1,0)Create a table visual shown in the following screenshot. And create a slicer using CoreCount field of second table.
Set the value of the slicer to 8, then set value of checkresult measure to 1 in visual level filter, you will get expected result.
Thanks,
Lydia Zhang
Hi RafDelgado,
In your second table, create a measure using the following formula.
s = IF(HASONEVALUE(t2[CoreCount]),VALUES(t2[CoreCount]),BLANK())
In your first table, create a measure using the following formula.
checkresult = IF(MAX(t1[CPU cores])>=[s]&&MAX(t1[Memory:GB])>=2,1,0)
Create a table visual shown in the following screenshot. And create a slicer using CoreCount field of second table.
Set the value of the slicer to 8, then set value of checkresult measure to 1 in visual level filter, you will get expected result.
Thanks,
Lydia Zhang
Hi Anonymous,
Thank you for replying, this is perfect to get me started, I ended up making the changes in the query editor via a column merge but this is so much better.
Thanks again :smileyvery-happy:,
Raf