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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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.
Check out the April 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 |
|---|---|
| 13 | |
| 11 | |
| 8 | |
| 8 | |
| 7 |
| User | Count |
|---|---|
| 38 | |
| 27 | |
| 25 | |
| 22 | |
| 22 |