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
Hi. I am new in Power Bi. Please I need to create a new column with the division between of Sum of PrecioTotal and Count of Razon.
Thanks for your help
| CodVend | Sum of PrecioTotal | Count of Razon |
| 1 | $3.57 | 2 |
| 2 | $6.90 | 3 |
| 3 | $11.23 | 3 |
| 4 | $12.26 | 3 |
| 5 | $16.84 | 4 |
Solved! Go to Solution.
Hi @Anonymous,
If above sample table is the original data table in excel worksheet, you can refer to below DAX to create a calculated column.
Column = DIVIDE(Table9[Sum of PrecioTotal],Table9[Count of Razon])
If above table is the output in table visual, and the source table contains columns [CodVend], [PrecioTotal] and [Razon]. You can add below measure to table visual.
Measure=SUM(Table9[[PrecioTotal]])/SUM(Table9[Razon])
Best regards,
Yuliana Gu
Hi @Anonymous,
If above sample table is the original data table in excel worksheet, you can refer to below DAX to create a calculated column.
Column = DIVIDE(Table9[Sum of PrecioTotal],Table9[Count of Razon])
If above table is the output in table visual, and the source table contains columns [CodVend], [PrecioTotal] and [Razon]. You can add below measure to table visual.
Measure=SUM(Table9[[PrecioTotal]])/SUM(Table9[Razon])
Best regards,
Yuliana Gu
Hi,
Paste your source data here.
My source data is a excel spreadsheet.
The table of the message is the data of that spreadsheet.
Thanks for your help
Hi,
If the Table in your original post is also your source data, then write this calculated column formula
=[Sum of PrecioTotal]/[Count of Razon]
Hope this helps.
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 |
|---|---|
| 42 | |
| 37 | |
| 35 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 67 | |
| 58 | |
| 29 | |
| 27 | |
| 25 |