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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
majid_75
Helper I
Helper I

DAX concatenatex or path

Hello,

I need help, please.
I have a table and I want to create a new column to concatenate the different pages of an ID according to the index.
The objective is to be able to trace the navigation of a user.

Here is my dax but I have an order problem on my new column

View Page =
CALCULATE(
CONCATENATEX(VALUES('Table'[Chemin]),'Table'[Chemin],","),
ALLEXCEPT('Table','Table'[Id])
)

majid_75_0-1638487711585.png

I don’t understand what my mistake is.
Thank you

1 ACCEPTED SOLUTION
majid_75
Helper I
Helper I

Hello,

 

I think it's ok with my dax. I add a parameter in the function Concatenatex:

 

CALCULATE(
CONCATENATEX('Table','Table'[Chemin],",",'Table'[Index],ASC),
ALLEXCEPT('Table','Table'[Id]))

View solution in original post

3 REPLIES 3
majid_75
Helper I
Helper I

Hello,

 

I think it's ok with my dax. I add a parameter in the function Concatenatex:

 

CALCULATE(
CONCATENATEX('Table','Table'[Chemin],",",'Table'[Index],ASC),
ALLEXCEPT('Table','Table'[Id]))
wdx223_Daniel
Super User
Super User

View Page =
CALCULATE(
CONCATENATEX(SUMMARIZE('Table','Table'[Chemin],'Table'[Id]),'Table'[Chemin],",",'Table'[Id]),
ALLEXCEPT('Table','Table'[Id])
)

Hello,
Thanks but i have the same issue

majid_75_0-1638517579458.png

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors