Forum Discussion

vikashkarra's avatar
vikashkarra
Helper I
9 years ago
Solved

DAX HELP?

Hello - trying to see if this is possible to do:   Date                          Category                 Minutes 7/1/2016                    Lobby                     2 7/1/2016                 ...
  • vikashkarra's avatar
    vikashkarra
    9 years ago

    Measure = CONCATENATEX ( VALUES ( Data[Place Name (standardized)]), Data[Place Name (standardized)], ", " )

     

    looks like I got it - validating as we speak, but I think that calculated measure gives me what I want -

     

    Thanks!!

  • KGrice's avatar
    KGrice
    9 years ago

    Ha, glad you found it! I was just coming back to post something similar to create the table:

     

    New Table = SUMMARIZE(
    TableName,
    TableName[Date],
    "Category List", CONCATENATEX(TableName, TableName[Category], ", "),
    "Sum Minutes", SUM(TableName[Minutes])
    )