Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi All
I need urgent help in below qurey where I am getting wrong value in the table. Its supposed to show 78 adding all the number in the table78 = if I export that same table to CSV and add it up
Dax Query
Solved! Go to Solution.
New Measure
VAR _TABLEE =
ADDCOLUMNS (
VALUES ( 'DDate'[YearMonth] ),
"@MYMEASURE", [Total Version_Update]
)
RETURN
SUMX ( _TABLEE, [@MYMEASURE] )
Hi
It is about the context and DAX Behavior for showing results in total context.
Writing a new measure like above-mentioned format would definitely solve your problem.
But I have to mention that it is not the best solution as I do not have the details of your data and data modeling.
Best Regards
New Measure
VAR _TABLEE =
ADDCOLUMNS (
VALUES ( 'DDate'[YearMonth] ),
"@MYMEASURE", [Total Version_Update]
)
RETURN
SUMX ( _TABLEE, [@MYMEASURE] )
Hi
It is about the context and DAX Behavior for showing results in total context.
Writing a new measure like above-mentioned format would definitely solve your problem.
But I have to mention that it is not the best solution as I do not have the details of your data and data modeling.
Best Regards
AS per above query it show like this below 
In the table it showing wrong total. Now its showing in the Total 2 and it supposed to be 3
You can do the same for this problem as well.
Is there any suggent how add those value 2+1 = 3
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.