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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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