Forum Discussion
Add together two count visuals
- 2 years ago
Hi, write a simple dax measure = Count( column A ) + Count ( column B ). You are counting (referencing) columns in tables, not visuals. 🙂
Kudos and mark as solution appreciated. - 2 years ago
Hi pigsinblankets ,
Based on your description,
You might consider the following code to create a Measure.
My Sample:Sum of Count1 = [CountA] + [CountB]OR
Sum of Count2 = CALCULATE(COUNT('Table'[Category]),FILTER('Table','Table'[Category] = "A")) + CALCULATE(COUNT('Table'[Category]),FILTER('Table','Table'[Category] = "B"))Result is as below.
Is this the result you expect?
For further details,please find attachment.
If I've misunderstood you, please provide detailed sample data and the results you are hoping for. We can better understand the problem and help you. Show it as a screenshot or excel. Please remove any sensitive data in advance.Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, write a simple dax measure = Count( column A ) + Count ( column B ). You are counting (referencing) columns in tables, not visuals. 🙂
Kudos and mark as solution appreciated.