Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I'm trying to get a sum of my sales figures by the product category from the a column in the same table
The original data is below.
| Location id | Product type | Sales |
| 224 | Boots | £42 |
| 746 | Hat | £74 |
| 845 | Jumper | £26 |
| 942 | Hat | £12 |
| 224 | Boots | £14 |
| 224 | Jumper | £28 |
| 746 | Boots | £61 |
And what I'm trying to get is below, I am having trouble getting the right numbers for the last three columns
| Location id | Total Sales | Boots Sales | Hat sales | Jumper Sales |
| 224 | £84 | £56 | £0 | £28 |
| 746 | £135 | £61 | £74 | £0 |
| 845 | £26 | £0 | £0 | £26 |
| 942 | £12 | £0 | £12 | £0 |
I have tried the following code:
Boots_Sales = CALCULATE( SUM(Sheet1[Sales]), FILTER(Sheet1,Sheet1[Product_Type]="Boots"))
Thanks
Solved! Go to Solution.
thank @themistoklisfor the reply i needed in a column to do more working out from that column. I have now found a solution by using the same formula as a above bt for a measure instead of a column.
Thanks
thank @themistoklisfor the reply i needed in a column to do more working out from that column. I have now found a solution by using the same formula as a above bt for a measure instead of a column.
Thanks
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 81 | |
| 66 | |
| 50 | |
| 45 |