Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi,
I need to get the count of the following columns:
- product
- item
- country
Please could you let me know how to get a measure to count all 3 columns.
Solved! Go to Solution.
Hi @pardeepd84 ,
To get the sum of count value of each column.
Measure = DISTINCTCOUNT('Table'[country])+DISTINCTCOUNT('Table'[item])+DISTINCTCOUNT('Table'[product])
To show the count of each column in a measure.
Measure = DISTINCTCOUNT('Table'[country])&" country,"&DISTINCTCOUNT('Table'[item])&" item,"&DISTINCTCOUNT('Table'[product])&" product"
Best Regards,
Jay
Hi @pardeepd84 ,
To get the sum of count value of each column.
Measure = DISTINCTCOUNT('Table'[country])+DISTINCTCOUNT('Table'[item])+DISTINCTCOUNT('Table'[product])
To show the count of each column in a measure.
Measure = DISTINCTCOUNT('Table'[country])&" country,"&DISTINCTCOUNT('Table'[item])&" item,"&DISTINCTCOUNT('Table'[product])&" product"
Best Regards,
Jay
if you need distinctcount
countrows(summarize (Table, Table[product], Table[Item], Table[Country]))
for count
countrows(selectcolumns(Table, "Combine",Table[product]& Table[Item] &Table[Country]))
User | Count |
---|---|
100 | |
68 | |
59 | |
47 | |
46 |