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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi to all,
i have a question about a measure to calculate grand total with particular condition.
I have 3 columns A, B and C
I want insert this condition:
IF A+B > C then A+B else 0
This formula work correclty in the table rows but not work in Grand Total .
May you help me to solved this issue?
Thanks in advance
Franco
Solved! Go to Solution.
You can create a new measure (not column) using DAX as follows:
Measure = IF(SUM(Data[A])+SUM(Data[B])>SUM(Data[C]);SUM(Data[A])+SUM(Data[B]);0)
You can create a new measure (not column) using DAX as follows:
Measure = IF(SUM(Data[A])+SUM(Data[B])>SUM(Data[C]);SUM(Data[A])+SUM(Data[B]);0)
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 49 | |
| 30 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 132 | |
| 102 | |
| 59 | |
| 39 | |
| 31 |