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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
EBGAL
Helper III
Helper III

Filter report if any of given teams take part

Hi, community,

 

I have a column with teams involved in a project. It can be one or many teams such as:

 

Project Teams
A
A, B, C
A, C
B, C
B
C

 

I want to build a slicer that would have A, B, C as a selection and find all projects where a team takes part in, even though it is not the only team.

 

Thanks

Evan

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @EBGAL 

I am not sure if I understood your question correctly, but I suggest transforming the table like CASE A below.

However, in case if you cannot transform the table, I also mentioned CASE B below.

Please check the below picture and the sample pbix file's link down below.

All measures are in the sample pbix file.

 

Picture1.png

 

 

Selected Teams Case A =
VAR currentproject =
MAX ( 'Projects Case A'[Project] )
RETURN
IF (
ISFILTERED ( 'Projects Case A'[Project] ),
CONCATENATEX (
FILTER (
ALL ( 'Projects Case A' ),
'Projects Case A'[Project] = currentproject
),
'Projects Case A'[Project Teams],
", "
)
)
 
 
Selected Teams Case B =
CALCULATE (
SELECTEDVALUE ( 'Projects Case B'[Project Teams] ),
FILTER (
'Projects Case B',
CONTAINSSTRING (
'Projects Case B'[Project Teams],
SELECTEDVALUE ( Teams[Project Teams] )
)
)
)
 
 
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi, @EBGAL 

I am not sure if I understood your question correctly, but I suggest transforming the table like CASE A below.

However, in case if you cannot transform the table, I also mentioned CASE B below.

Please check the below picture and the sample pbix file's link down below.

All measures are in the sample pbix file.

 

Picture1.png

 

 

Selected Teams Case A =
VAR currentproject =
MAX ( 'Projects Case A'[Project] )
RETURN
IF (
ISFILTERED ( 'Projects Case A'[Project] ),
CONCATENATEX (
FILTER (
ALL ( 'Projects Case A' ),
'Projects Case A'[Project] = currentproject
),
'Projects Case A'[Project Teams],
", "
)
)
 
 
Selected Teams Case B =
CALCULATE (
SELECTEDVALUE ( 'Projects Case B'[Project Teams] ),
FILTER (
'Projects Case B',
CONTAINSSTRING (
'Projects Case B'[Project Teams],
SELECTEDVALUE ( Teams[Project Teams] )
)
)
)
 
 
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Hi, @Jihwan_Kim ,

Thanks for your solution, case B worked for me as I can't transform the table to apply case A.

Thanks

Evan

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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