Dear Experts,
I am trying to use DAX function in excel by showing Distinct values using concatenateX and would like to join Distinct count with it for individual values.
i.e.
Sydney
Sydney
NY
NY
NY
TX
CT
CT
OUTPUT required:
Sydney 2, NY 3, TX 1, CT2
Currently I am using
and it is giving me only
Sydney, NY, TX, CT
Appreciated,
I am trying to use DAX function in excel by showing Distinct values using concatenateX and would like to join Distinct count with it for individual values.
i.e.
Sydney
Sydney
NY
NY
NY
TX
CT
CT
OUTPUT required:
Sydney 2, NY 3, TX 1, CT2
Currently I am using
Excel Formula:
=CONCATENATEX(DISTINCT(Table2[Adj_Distr]), Table2[Adj_Distr] ,", ")
and it is giving me only
Sydney, NY, TX, CT
Appreciated,