Forum Discussion

BIswajit_Das's avatar
BIswajit_Das
Impactful Individual
2 years ago

Calculated Table

Hello

I Have a Calculated Table like

slnomobres1gender
134am
132bf
134cf
3123am
232cm
3123am
221sf
3111cm
226af

As per my requirement i want the table

summerized by mob column
I want all columns based on Summerised MOB column
Any Ideas
Thanks & Regrads..

1 Reply

  • Hello BIswajit_Das,

     

    Can you please try this DAX:

    SummarizedTable = 
    SUMMARIZE(
        TableName,
        TableName[mob],
        "Distinct_slno", CONCATENATEX(DISTINCT(TableName[slno]), TableName[slno], ", "),
        "Distinct_res1", CONCATENATEX(DISTINCT(TableName[res1]), TableName[res1], ", "),
        "Distinct_gender", CONCATENATEX(DISTINCT(TableName[gender]), TableName[gender], ", ")
    )
    

    Should you require any questions or further assistance, please do not hesitate to reach out to me.