cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Shaglok
Frequent Visitor

How to make a chart with top-selling articles

Hello.

 

I need to make a chart like this:

 

consultabi.png

 

It's a chart with the top-selling product (of a list of 50) according to the date (day, week) and hour. I already have all the data correctly formatted, but I can't find a proper way to achieve it. 

 

Thanks!!

3 REPLIES 3
v-kkf-msft
Community Support
Community Support

Hi @Shaglok ,

 

Assuming you have the following example data, 

 

vkkfmsft_0-1660723283805.png

 

then you can use the measure to return the top ranked product.

 

Measure = 
var maxvalue = MAX('Table'[number])
return CALCULATE(MAX('Table'[Product]), FILTER('Table','Table'[number] = maxvalue))

vkkfmsft_1-1660723296492.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Thank you!!

 

The problem is that we calculate the number using a measure, and CALCULATE does not accept it.

 

Our data structure is a bit more complex. What we register is the sell as commercial act, and each one have tags indicating the product. With the measure we count the number of the tags. Each sell ID has a tag for every product of the shop. 0 for the products we don't sell and X for the sold products.

vanessafvg
Super User
Super User

you have given  very little information here i am not sure how you want someone to solve this.

 

1. what does your data look like, provide sample data in text format

2. what are you struggling with exactly?  





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors