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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors