Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi Experts, I have a measure as below
I have Table1 and Table2, I am just finding the difference of values from between Table1 Field and Table 2 Field
As it is working perfectly in Rows but Grand Total is not coming in Bottom
Test =
VAR Prj = SELECTEDVALUE(Table1[Project])
Var Des = CALCULATE(MAXX(Table2,Table2[DES LBE]),Table2[Project]=prj)
VAR CurrenTotal = CALCULATE(MAXX(Table1,Table1[Current Total of the Prices]),Table1[Project]=prj)
VAR Result = IF(Des <>BLANK(), CurrenTotal-Des,BLANK())
VAR TotalResult = IF(Prj<>BLANK(),Result,BLANK())
Return TotalResult
To get and include the grand total I have to write another measure as below
Including Grand Total =
SUMX(Table1,[Test])
Any possible to write measure in single measure to acheive grand total as well please?
Hi @Sudhavi_84,
Is your issue solved? If the issue has been solved, please adopt the solution to help others.
If you still have some question, please provide your sample data and i will check it in my environment.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
Hi @Sudhavi_84
Is your issue solved?
Maybe you can try HASONEVALUE function.
Just like:
IF(
HASONEVALUE(Table[Column]),
Measure,
Grand Total // calculation logic of total
)
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
Please check this function. By the way this is what the Power BI visuals use behind the scenes.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 16 | |
| 12 | |
| 11 | |
| 8 | |
| 7 |
| User | Count |
|---|---|
| 41 | |
| 41 | |
| 34 | |
| 29 | |
| 24 |