March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi. I need to create a stacked bar chart of items sold per month; however, the data presented to me came with all the data in a single field. Any advice on how to get this into the correct format?
ex.
Date Order # / Item
2018-01-01 / 1 / Hamburger, Fries, Soda
2018-01-01 / 2 / Fries, Shake
2018-01-02 / 3 / Hamburger, Soda
2018-01-02 / 4 / Hamburger
On my report, I need to show that on
Jan 01, I sold 1 Hamburger, 2 Friest, 1 Soda, 1 Shake
Jan 02, I sold 2 Hamburgers, 1 Soda
Thanks!
Solved! Go to Solution.
You want your SalesTable look like this:
1. Use Query Editor to re-format your source data. Steps:
- Split Colums by Delimiter /
- Split Columns by Delimiter ,
- Unpivot the last 3 columns (with Items)
- Adjust Data Type, etc
2. Add a measure
Count Items = COUNTROWS(SalesTable)
3. Visualize with Matrix or other chart
@Anonymous,
By the way, you may select Split into Rows directly.
@Anonymous,
By the way, you may select Split into Rows directly.
I've created the extra columns and it works...to a degree. I can't build charts that show % of Grand Total (because each column has it's own Grand Total). I tried creating a Grand Total of all items sold; however, I can't seem to get a % of Grand Total view still (could be a simple calc that I'm missing). My example was very simple. What if instead of months, it was a unique reference number (order #)? e.g. 10001, 10002, 10003 and the item sold had various items in the one field? And there millions of orders generated monthly? Thanks!
You want your SalesTable look like this:
1. Use Query Editor to re-format your source data. Steps:
- Split Colums by Delimiter /
- Split Columns by Delimiter ,
- Unpivot the last 3 columns (with Items)
- Adjust Data Type, etc
2. Add a measure
Count Items = COUNTROWS(SalesTable)
3. Visualize with Matrix or other chart
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |