Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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