power bi deskstop – calculated column result different in daxstudio

Advertisements Carrying on from my previous question  here   I still do not understand why pbi desktop table visual not giving the same result as per daxstudio. Replicated test — parent – child rollup test — 3 rows, 3 values, sumx EVALUATE –RollupTest = DATATABLE ( "name", STRING, "child value", INTEGER, { { "test1", 1 }, {… Read More power bi deskstop – calculated column result different in daxstudio

how to remove unused measures and columns in powerbi using Daxstudio

Advertisements I am trying to remove unnecessary columns and measures from a power bi direct query. Is there any way to identify and delete unnecessary columns and measures from the model using Dax Studio DMV ? many thanks in advance >Solution : No, this is not possible using DAX Studio. You could try measure killer:… Read More how to remove unused measures and columns in powerbi using Daxstudio

DAX Studio – Expression specified in the query is not a valid table expression

Advertisements I have a code and outcome as below EVALUATE VAR AggregatedSalesInCurrency = ADDCOLUMNS ( SUMMARIZE( ‘OPC SUMMARY (2)’, ‘Calendar'[Date], ‘dimCurrency'[Currency Code] ), "@SalesAmountInCurrency", [Sales (Internal)], "@Rate", CALCULATE ( SELECTEDVALUE ( ‘factFX'[FX Rate] ) ) ) RETURN AggregatedSalesInCurrency But if I add the SUMX function say the expression specified in the query is not a… Read More DAX Studio – Expression specified in the query is not a valid table expression