Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
| Producer | region | run | material | cost | total | total group |
| abc | mars | fast | a | 5 | 5 | 15 |
| abc | mars | fast | b | 10 | 10 | 15 |
| abc | mars | slow | c | 15 | 15 | 35 |
| abc | mars | slow | d | 20 | 20 | 35 |
| xyz | neptune | fast | e | 5 | 5 | 30 |
| xyz | neptune | fast | f | 10 | 10 | 30 |
| xyz | neptune | fast | g | 15 | 15 | 30 |
Hi guys I looking for DAX that will add a new column "total group" to table as shown above. the last column
The column should group the values by producer, region and run and it should NOT groupby the material column.
Solved! Go to Solution.
Hi @Anonymous ,
Column = CALCULATE(SUM('Table'[total]),ALLEXCEPT('Table','Table'[Producer],'Table'[region],'Table'[run]))
Best Regards,
Jay
Hi @Anonymous ,
Column = CALCULATE(SUM('Table'[total]),ALLEXCEPT('Table','Table'[Producer],'Table'[region],'Table'[run]))
Best Regards,
Jay
Hi,
Please refer to this documentation and see if it solves your issue.
In regards to creating the additional column, do you want to concatenate the values or have a numeric column?
Concatenate: Column D = [Producer] & [region] & [run]
It will be numeric and not concatenate.
I am looking for DAX as the group by in power query is taking lot of time to process.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |