March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
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.
Solved! Go to Solution.
See if this works for you
SelectedContinent =
IF (
ISFILTERED ( SampleTable[Geo Continent] ),
"Continent:"
& CONCATENATEX (
ALLSELECTED ( 'SampleTable'[Geo Continent] ),
UNICHAR ( 9989 ) & 'SampleTable'[Geo Continent],
","
),
""
)
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
See if this works for you
SelectedContinent =
IF (
ISFILTERED ( SampleTable[Geo Continent] ),
"Continent:"
& CONCATENATEX (
ALLSELECTED ( 'SampleTable'[Geo Continent] ),
UNICHAR ( 9989 ) & 'SampleTable'[Geo Continent],
","
),
""
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
106 | |
98 | |
65 | |
54 |