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

Be 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

Reply
Balaraju
Helper II
Helper II

I Need Geo Continent In card with Multiple Names

Hi All Good Morning

 

I have Geo Continent Column in my table Using that column as filter but I need to see Geo continent Name at top of the report as text when I am selecting Particular Geo continent .

 

For that I wrote one Measure:

Geo Continent Name = if(isfiltered('Table'[Geo Continent]), selectedvalue('Table'[Geo Continent]), " ")

It is working for single Selection But when I am going two do multiple selection I want to see Multiple Names. Now it is showing Blank Could you please help me on that.

 

Balaraju_0-1645595374742.png

 

1 ACCEPTED SOLUTION
moizsherwani
Continued Contributor
Continued Contributor

See if this works for you

 

SelectedContinent =
IF (
    ISFILTERED ( SampleTable[Geo Continent] ),
    "Continent:"
        & CONCATENATEX (
            ALLSELECTED ( 'SampleTable'[Geo Continent] ),
            UNICHAR ( 9989 ) & 'SampleTable'[Geo Continent],
            ","
        ),
    ""
)

 

 

MultiSelect.PNG

Thanks,

Moiz
Was I able to answer your question? Mark my post as a solution to help others. Kudos if you liked the solution.

View solution in original post

2 REPLIES 2
Samarth_18
Community Champion
Community Champion

Hi @Balaraju ,

 

Please try this:-

Geo =
IF (
    ISFILTERED ( 'Table'[Geo Continent] ),
    CONCATENATEX ( VALUES ( 'Table'[Geo Continent] ), [Geo Continent], " " )
)

 

Thanks,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

moizsherwani
Continued Contributor
Continued Contributor

See if this works for you

 

SelectedContinent =
IF (
    ISFILTERED ( SampleTable[Geo Continent] ),
    "Continent:"
        & CONCATENATEX (
            ALLSELECTED ( 'SampleTable'[Geo Continent] ),
            UNICHAR ( 9989 ) & 'SampleTable'[Geo Continent],
            ","
        ),
    ""
)

 

 

MultiSelect.PNG

Thanks,

Moiz
Was I able to answer your question? Mark my post as a solution to help others. Kudos if you liked the solution.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.