Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Notakker
Regular Visitor

Filter common values

My data:

Notakker_0-1679520350190.png

My goal:

I'm trying to build a graph with Users and common values between them (at least two). Example, when I try to build my graph, thats what I have:

Notakker_1-1679520467759.png

But I want to eliminate node with only one connection:

Notakker_2-1679520593992.png

Up to here, I can achieve using agreggation and filtering count > 1. But when I try to filter by two or more Users, i'm not able to keep the same dynamic, because the number of connections changes.

1 ACCEPTED SOLUTION
v-xinruzhu-msft
Community Support
Community Support

Hi @Notakker 

You can refer to the following measure

Measure = IF(COUNTROWS(FILTER(ALLSELECTED('Table'),[Related]=SELECTEDVALUE('Table'[Related])))>1,1,0)

Then put the measure to the visual filter

vxinruzhumsft_0-1679624622369.png

It can work

vxinruzhumsft_1-1679624735889.png

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
v-xinruzhu-msft
Community Support
Community Support

Hi @Notakker 

You can refer to the following measure

Measure = IF(COUNTROWS(FILTER(ALLSELECTED('Table'),[Related]=SELECTEDVALUE('Table'[Related])))>1,1,0)

Then put the measure to the visual filter

vxinruzhumsft_0-1679624622369.png

It can work

vxinruzhumsft_1-1679624735889.png

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors