This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Hi Experts
I Want to sum two columns in a table, with an expection for 3 companies in the FACT_Table. Where the company name are
1. ABC
2. DDS
3. KKS
we need to add an addtional value to the sum which need to be manually added to the measure they are not in the fact table
1. 900
2. 600
3. 450
All other companies are col 1 + Col 2 for total Sales.
| Campnay Name | Col 1 | Col 2 | Result |
| ABC | 1 | 2 | 3 |
| DDS | 1 | 2 | 3 |
| DDS | 1 | 2 | 3 |
| KKS | 1 | 2 | 3 |
| KKS | 1 | 2 | 3 |
| KKS | 1 | 2 | 3 |
Solved! Go to Solution.
@Anonymous , expected output is not clear
a measure like
calculate(sum(Table[Col1])+sum([Col2]), Filter(Table, not Table[Company] in {"ABC", "DDS", "KKS"} ))
@Anonymous , expected output is not clear
a measure like
calculate(sum(Table[Col1])+sum([Col2]), Filter(Table, not Table[Company] in {"ABC", "DDS", "KKS"} ))
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 |
|---|---|
| 24 | |
| 24 | |
| 21 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 49 | |
| 26 | |
| 25 |