Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Summarize Column in DAX behaviour

Hi ,

We have joined one to many between customer(1) and address(many) in SSAS tabular model.

Using this model creating SSRS report using DAX query(below) but this is giving too many record which is acutually 1000 records when checked the query in SSMS.Here both tables are acting like dimesions.can some one tell me whats going worng.

 

EVALUATE SUMMARIZECOLUMNS

('Customer'[Cif_Id],

'Address'[Address_Category],

 'Address'[Address_Line1],

 'Address'[Address_Line2]

  )

 

Please help me to get proper data.