Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
hi
i am tring to sum all the pos columns the columns are in string format.
i have tried countA as well but didnt work
Solved! Go to Solution.
Hi @Anonymous
There is a way maybe more complicated, but you can sum the strings of the entire table . Calculate the strings in each column separately and then sum these counts .
For example :
POS 1-1 = COUNTA('The export'[POS 1])
POS 2-1 = COUNTA('The export'[POS 2])
POS 3-1 = COUNTA('The export'[POS 3])
……………
POS 11-1 = COUNTA('The export'[POS 11])
And then sum these counts
Total = CALCULATE('The export'[POS 1-1]+'The export'[POS 2-1]+'The export'[POS 3-1]+……………… +'The export'[POS 11-1])
You will get the sum of strings in table .
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
There is a way maybe more complicated, but you can sum the strings of the entire table . Calculate the strings in each column separately and then sum these counts .
For example :
POS 1-1 = COUNTA('The export'[POS 1])
POS 2-1 = COUNTA('The export'[POS 2])
POS 3-1 = COUNTA('The export'[POS 3])
……………
POS 11-1 = COUNTA('The export'[POS 11])
And then sum these counts
Total = CALCULATE('The export'[POS 1-1]+'The export'[POS 2-1]+'The export'[POS 3-1]+……………… +'The export'[POS 11-1])
You will get the sum of strings in table .
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
i tried count x it did work as well
@Anonymous , first argument is the table name
refer :
https://theexcelclub.com/dax-count-and-countx-impact-of-using-measures-and-columns/
i have tried first argument as countx as well
i have shared pbix file
https://drive.google.com/file/d/1qZ5_7fMRh5WE_wDN3DAZFH9G0opTB2vX/view?usp=sharing
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
93 | |
58 | |
44 | |
35 | |
34 |