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
sananthv
Helper II
Helper II

CONCATENATEX appearing in table total

 

I am using CONCATENATEX to combine rows (the "Name" column in the example given bellow). Wondering how to remove the values appearing in the totals row. 

 

concatenatex.png

 

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

Hi there,

 

You could do add some sort of check to your measure to ensure you return a result only for individual Identifiers.

 

The first measure works by detecting when a single Identifier value is visible.

The second measure works in a table visual where you have Identifier on the rows, and returns a nonblank value only at the "level" of a single Identifier.

 

Name without total =
IF (
    HASONEVALUE ( YourTable[Identifier] ),
    CONCATENATEX(...)
)

Name without total =
IF (
    ISINSCOPE ( YourTable[Identifier] ),
    CONCATENATEX(...)
)

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

1 REPLY 1
OwenAuger
Super User
Super User

Hi there,

 

You could do add some sort of check to your measure to ensure you return a result only for individual Identifiers.

 

The first measure works by detecting when a single Identifier value is visible.

The second measure works in a table visual where you have Identifier on the rows, and returns a nonblank value only at the "level" of a single Identifier.

 

Name without total =
IF (
    HASONEVALUE ( YourTable[Identifier] ),
    CONCATENATEX(...)
)

Name without total =
IF (
    ISINSCOPE ( YourTable[Identifier] ),
    CONCATENATEX(...)
)

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

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.