This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I want to add the value cloumns in my table .Not sure how to do it ,can anyone help me out on this
As per the below screenshot want to add the GROSS AMT + DISCOUNT_AMT AND GROSS AMT SUP
i.e 50,302 + (-1064) + (-2100)
Solved! Go to Solution.
Hi @burna,
Based on my test, you could refer to below steps:
Sample data:
Create a calculated column:
Column = CALCULATE(SUM(TableA[DISCOUNT_AMT])+CALCULATE(SUM(TableA[GROSS_AMT])+CALCULATE(SUM(TableB[GROSS AMT SUP]))))
Also, you could create a measure:
Measure = CALCULATE(SUM(TableA[DISCOUNT_AMT])+CALCULATE(SUM(TableA[GROSS_AMT])+CALCULATE(SUM(TableB[GROSS AMT SUP]))))
Result:
You could also download the pbix file to have a view:
https://www.dropbox.com/s/0xnar83jrju5hk2/ADD%20COLUMN.pbix?dl=0
Regards,
Daniel He
Hi @burna,
Based on my test, you could refer to below steps:
Sample data:
Create a calculated column:
Column = CALCULATE(SUM(TableA[DISCOUNT_AMT])+CALCULATE(SUM(TableA[GROSS_AMT])+CALCULATE(SUM(TableB[GROSS AMT SUP]))))
Also, you could create a measure:
Measure = CALCULATE(SUM(TableA[DISCOUNT_AMT])+CALCULATE(SUM(TableA[GROSS_AMT])+CALCULATE(SUM(TableB[GROSS AMT SUP]))))
Result:
You could also download the pbix file to have a view:
https://www.dropbox.com/s/0xnar83jrju5hk2/ADD%20COLUMN.pbix?dl=0
Regards,
Daniel He
Create a new measure that includes those three fields. It would be something like =SUM(Table[GROSS_AMT]) + SUM(Table[DISCOUNT_AMT]) + SUM(Table[GROSS AMT SUP]). When added to the matrix, the measure would show the sum of the three column values repeating for each row.
The problem is GROSS_AMT and DISCOUNT_AMT are from table A GROSS_AMT_SUP is from table B,but they are related to each other by one to many relation and ,i want to represent the total value in the same matrix table
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 14 | |
| 10 | |
| 9 | |
| 7 | |
| 7 |
| User | Count |
|---|---|
| 33 | |
| 28 | |
| 26 | |
| 20 | |
| 17 |