Hi,
Power BI newbie. I wanted to know the top category by sales per place, per year so I created a calculated table with a calculated column for the rank that looks like this:
I tried to concatenate the categories for my visual using this measure:
Top Category = CONCATENATEX(FILTER(Table, Table[Rank]=1), Table[Category], ",")
But this is what I got despite the date on the slicer being Year 3:
I've been working on this for quite some time and can't seem to find any solution. I'd appreciate any help. Thanks in advance.
Solved! Go to Solution.
Hi,
These measures work
Sales = SUM(Data[Total sales])
Max sales = MAXX (VALUES(Data[Category]),[Sales])
Best selling category = CONCATENATEX(TOPN(1,VALUES(Data[Category]),[Sales]),Data[Category],",")
Hope this helps.
Hi,
These measures work
Sales = SUM(Data[Total sales])
Max sales = MAXX (VALUES(Data[Category]),[Sales])
Best selling category = CONCATENATEX(TOPN(1,VALUES(Data[Category]),[Sales]),Data[Category],",")
Hope this helps.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
This session will provide guidance and teach campers the skills required to build Power BI reports that support multiple languages.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
219 | |
56 | |
47 | |
45 | |
43 |
User | Count |
---|---|
297 | |
207 | |
75 | |
75 | |
68 |