Forum Discussion
GreeshmaN
Advocate I
1 year agoSummarizeColumns with Calculatedtable is not working as expected
Hello, I have a fact table called fact_A and a dimension table called dim_mas_prd. I am using summarizecolumns with caluculatedtable functions in the cascading parameters for the paginated report ...
Bibiano_Geraldo
Super User
1 year agoHi GreeshmaN ,
To achieve your goal, please try this DAX:
CALCULATETABLE (
VALUES('fact_A'[prd_id]),
'dim_mas_prd'[mas_prd_id] = "value"
)