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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
How can I sum one specifice product in a column? So for instance I have two columns. One is the product name and the other is the sales. I need to total the sales just one specfic product in the column.
Thank you,
Joseph
Solved! Go to Solution.
In any sort of visualization that has 'Table'[ProductName] as a legend, row, column, or axis label, that filtering will be done automatically.
If you just need a measure that is filtered by default, use CALCULATE():
SumSpecificProduct:=
CALCULATE(
SUM('Table'[Sales])
,'Table'[ProductName] = "<specific product name>"
)
I would just create the measure for Total Sales, and then use a slicer to look at a specific product.
Might be a little cleaner to use SUMX:
=SUMX(FILTER(InternetSales, InternetSales[SalesTerritoryID]=5),[Freight])
This example is from here:
https://support.office.com/en-US/article/SUMX-Function-DAX-9ca68d1f-34cd-4a98-bc5c-36646118811a
SUMX() and FILTER() both force single threaded evaluation.
Hi Joseph,
Depending on what you want to do, you have a few options:
One option is the calculate function:
measure = calculate(sum[sales],filter(table,table[product]="Product 1"))
You could also just take the sum of sales and use a product slicer. Select the product you want to see sales for.
Finally, you could use a report-level, page-level, or chart-level filter to only show the specific product you want to see.
In any sort of visualization that has 'Table'[ProductName] as a legend, row, column, or axis label, that filtering will be done automatically.
If you just need a measure that is filtered by default, use CALCULATE():
SumSpecificProduct:=
CALCULATE(
SUM('Table'[Sales])
,'Table'[ProductName] = "<specific product name>"
)
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 70 | |
| 55 | |
| 38 | |
| 28 | |
| 22 |
| User | Count |
|---|---|
| 133 | |
| 119 | |
| 54 | |
| 37 | |
| 31 |