Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Dante79
Frequent Visitor

Count items in category and view as a clustered column chart

Hi,

 

I'm a beginner to PowerBI and appreciate some assistance/advice please.

 

I managed to compute the Excel data below to show in the following Matrix table in PowerBI.

 

temp2.jpg

However, I would like to output into the below table so that I can create a clustered column chart to view the type of vehicles (and the no. of times) that each person uses in each month.

 

temp4.jpg

 

I've tried to create a couple of measures with distinctcount but it just won't give the correct count.

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Dante79,

 

After test with your data, I modify my formula to use distinct date count to calculate total use amount.

Usage Count =
CALCULATE (
    DISTINCTCOUNT ( cars[Date] ),
    ALLSELECTED ( cars ),
    VALUES ( cars[Name] ),
    VALUES ( cars[Type] ),
    VALUES ( cars[Date] )
)

6.PNG

 

Regards,

Xiaoxin Sheng

View solution in original post

8 REPLIES 8
Anonymous
Not applicable

Hi @Dante79,


You can try to use below measure formula if it works for your requirement:

Count of Type =
CALCULATE (
    COUNT ( Table[Type] ),
    ALLSELECTED ( Table ),
    VALUES ( Table[Name] ),
    VALUES ( Table[Type] ),
    VALUES ( Table[Date] )
)

If above not help, please share some sample data or pbix file for test.

 

Regards,
Xiaoxin Sheng

Thanks.

 

But the measure produced an error 'Too many arguments were passed to the COUNT function. The maximum argument count for the function is 1.'

I've attached some sample data here
https://1drv.ms/f/s!ArkMmgaHDZU7lBnOZpnQvBgxATSl

 

 

Ok the measure went through successfully but it is still not giving the correct results in the chart.

 

 

temp3.jpg

For example, Vicky (September) should be showing as count=1 for Van.

Please help anyone ??

 

I've been spending hours just trying to figure this out. I'm sure it's a very basic thing for many but really struggling to get this to work. Appreciate any help or someone to point me towards a direction please !

 

Thanks !

Bump

Anonymous
Not applicable

Hi @Dante79,

 

After test with your data, I modify my formula to use distinct date count to calculate total use amount.

Usage Count =
CALCULATE (
    DISTINCTCOUNT ( cars[Date] ),
    ALLSELECTED ( cars ),
    VALUES ( cars[Name] ),
    VALUES ( cars[Type] ),
    VALUES ( cars[Date] )
)

6.PNG

 

Regards,

Xiaoxin Sheng

Great ! It works ! Thanks so much !!!

Dante79
Frequent Visitor

Any help is much appreciated ! 🙂

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.