Forum Discussion

PaulPalkowski's avatar
PaulPalkowski
Icon for Helper II rankHelper II
4 years ago
Solved

GroupedBy Combine rows with MaxDate

this is my table named Workers

NameDateType
Sam3/14/20221500
Sam3/19/20222000
Sam3/18/2022300
Sam3/11/202258
Sam3/20/20224877

 

How do I get it to this?

 

NameMaxDateType
Sam3/20/20221500, 2000, 300, 58, 4877
  • PaulPalkowski add a measure :

     

    Type Measure = 
    CONCATENATEX ('Table', 'Table'[Type],"," )

     

    In a table visual, use Name, MAx of Date, and above measure and you will have the output

     

     

    Follow us on LinkedIn and  to our YouTube channel

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

     

    Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.

     

     

2 Replies

  • PaulPalkowski add a measure :

     

    Type Measure = 
    CONCATENATEX ('Table', 'Table'[Type],"," )

     

    In a table visual, use Name, MAx of Date, and above measure and you will have the output

     

     

    Follow us on LinkedIn and  to our YouTube channel

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

     

    Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.