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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Anonymous
Not applicable

split by delimiter

Comma.PNG
hii,
I need output as if i select projectid 1 then SBU name as DT,IES like on card how i can ???
i.e SBU Name : DT/IES

1 ACCEPTED SOLUTION

Hi @Anonymous

 

Just Replace ISFILTERED with ISCROSSFILTERED in the code provided by @v-chuncz-msft

 

Measure =
"SBU: "
    & IF (
        ISCROSSFILTERED ( Table1[ProjectID] ),
        CONCATENATEX ( VALUES ( Table1[SBU Name] ), Table1[SBU Name], "," )
    )

 

 

View solution in original post

8 REPLIES 8
Zubair_Muhammad
Community Champion
Community Champion

Hi @Anonymous

 

Try this MEASURE and then put it in a CARD visual

 

Measure =
CONCATENATEX ( VALUES ( TableName[SBU Name] ), TableName[SBU Name], "," )
Anonymous
Not applicable

Thank you..
can you advice me when nothing is selected then only SBU : like this
i.e noting is selected then SBU:
when selected then SBU :dt,ies

@Anonymous,

 

You may use measure below.

Measure =
"SBU: "
    & IF (
        ISFILTERED ( Table1[ProjectID] ),
        CONCATENATEX ( VALUES ( Table1[SBU Name] ), Table1[SBU Name], "," )
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

But i have multiple filters......

Hi @Anonymous

 

Just Replace ISFILTERED with ISCROSSFILTERED in the code provided by @v-chuncz-msft

 

Measure =
"SBU: "
    & IF (
        ISCROSSFILTERED ( Table1[ProjectID] ),
        CONCATENATEX ( VALUES ( Table1[SBU Name] ), Table1[SBU Name], "," )
    )

 

 

Anonymous
Not applicable

thanks Smiley Happy

Anonymous
Not applicable

yes its works....

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors