Forum Discussion
GreeshmaN
1 year agoAdvocate I
SummarizeColumns 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
1 year agoSuper User
Hi GreeshmaN ,
To achieve your goal, please try this DAX:
CALCULATETABLE (
VALUES('fact_A'[prd_id]),
'dim_mas_prd'[mas_prd_id] = "value"
)