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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
titanic123
Helper I
Helper I

convert multiple rows into single row

Hi All, I have date like below, I need to convert multiple rows into single row by ID

 

ID   Visit_Date

101  01/10/2023

101  01/15/2023

101 01/23/2023

102 01/18/2023

102  02/23/2023

 

I need data as 
ID  Visit_Date1  Visit_Date2  Visit_Date3

101 01/10/2023  01/15/2023 01/23/2023
102 01/18/2023  02/23/2023

 

Please help me how to summarize using DAX.

3 ACCEPTED SOLUTIONS
gmsamborn
Super User
Super User

Hi @titanic123 

 

If I understand correctly, by adding a calculated column like below it could be used in columns of a matrix.

 

Visit No = 
    COUNTROWS(
        FILTER(
            ALL( 'Visits' ),
            'Visits'[ID] = EARLIER( 'Visits'[ID] )
                && 'Visits'[Visit_Date] <= EARLIER( 'Visits'[Visit_Date] )
        )
    )

 

Visit No.pbix

 

Let me know if this doesn't help.

View solution in original post

Ritaf1983
Super User
Super User

@titanic123 

You can add a calculated column with DAX :

Visit_rank = "Visit_"&RANKX(FILTER('Table','Table'[ID ]=EARLIER('Table'[ID ])),'Table'[ Visit_Date],,ASC)
Ritaf1983_0-1698296009378.png

and use this column in the matrix

Ritaf1983_1-1698296088455.png

Pbix is attached.

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.

 
Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

Anonymous
Not applicable

Hi @titanic123 ,

Could you please tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or if you are still confused about it, please feel free to let me know.

 

Best regards,
Community Support Team_Binbin Yu

View solution in original post

4 REPLIES 4
titanic123
Helper I
Helper I

Thanks a lot for the quick response, Both worked correctly.

Anonymous
Not applicable

Hi @titanic123 ,

Could you please tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or if you are still confused about it, please feel free to let me know.

 

Best regards,
Community Support Team_Binbin Yu

Ritaf1983
Super User
Super User

@titanic123 

You can add a calculated column with DAX :

Visit_rank = "Visit_"&RANKX(FILTER('Table','Table'[ID ]=EARLIER('Table'[ID ])),'Table'[ Visit_Date],,ASC)
Ritaf1983_0-1698296009378.png

and use this column in the matrix

Ritaf1983_1-1698296088455.png

Pbix is attached.

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.

 
Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile
gmsamborn
Super User
Super User

Hi @titanic123 

 

If I understand correctly, by adding a calculated column like below it could be used in columns of a matrix.

 

Visit No = 
    COUNTROWS(
        FILTER(
            ALL( 'Visits' ),
            'Visits'[ID] = EARLIER( 'Visits'[ID] )
                && 'Visits'[Visit_Date] <= EARLIER( 'Visits'[Visit_Date] )
        )
    )

 

Visit No.pbix

 

Let me know if this doesn't help.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

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! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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