The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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