The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello!
I have a bar chart on which I display the promo description of some products and a table where I use COUNTDISTINCT on the ID of that same promo. The problem is that the countdistict function counts 7 different ID's but the bar chart only shows 6 bars because one of the descriptions is duplicate (Different ID, same description).
Is there a way to display the description but grouping base on the ID (two bars with the same description).
Thanks
Solved! Go to Solution.
Hi @Anonymous ,
You could add ID into Legend to break down the bars.
Or use expand to have a try.
(The result of this way is same as that Pragati11 suggests. We can't hide the ID name.)
Hi @Anonymous ,
You could add ID into Legend to break down the bars.
Or use expand to have a try.
(The result of this way is same as that Pragati11 suggests. We can't hide the ID name.)
Thank you, the first option is what I'm looking for, I added the ID as a Legend and turned it off and it looks exactly as it should.
Best regards,
Mijalis
Hi @Anonymous ,
You can create a concatenated column which is a combination of PROMO and ID columns as follows:
ConcatCalc = CONCATENATE([ID], CONCATENATE(":", [PROMO]))
Then use the above column as an axis on your bar-chart.
Let me know if this helps.
Thanks,
Pragati
It is a good solution but not exactly what I'm looking for, the client doesn't want to see the ID, just the description. Than you very much!
Hi @Anonymous ,
I fear that this is not possible. Becasue logically if you think the axis will always show a unique value and a summarised figure agianst it on a bar chart.
I would suggest either to go with the above solutions or modify the names like - If there are 2 entries for a PROMO then may be rename those 2 entries as PROMO_1 & PROMO_2. Then show these 2 entries with same color as they are variants of same PROMO value.
Thanks,
Pragati
User | Count |
---|---|
56 | |
54 | |
53 | |
47 | |
30 |
User | Count |
---|---|
175 | |
88 | |
69 | |
48 | |
47 |