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! Get ahead of the game and start preparing now! Learn more
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!