Forum Discussion
empty rows after creating relationships
- 6 years ago
Hi Anonymous ,
I think you need to use measure and visual filter to achieve this goal.
Measure = CALCULATE(COUNT(B[NAME]), FILTER(B,B[NAME]=RELATED(A[name])))Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous , Default is right to join , It means catalog do no have all the execution log storage has.
- Anonymous6 years agoNot applicable
amitchandak when I connect Catalog to ExecutionLog, it means : everything in Cataloga and matching rows from ExecutionLog, like qury below:
SELECT ca.Name, ca.Path,
count(el.UserName) AS Uses,
el.ReportAction
FROM ExecutionLogStorage el
JOIN dbo.Catalog ca ON el.ReportID=ca.ItemID
where ca.type=2
GROUP BY ca.name, el.ReportAction, ca.pathORDER BY count(el.UserName) DESC
- dax6 years agoCommunity Support
Hi Anonymous ,
I think you need to use measure and visual filter to achieve this goal.
Measure = CALCULATE(COUNT(B[NAME]), FILTER(B,B[NAME]=RELATED(A[name])))Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.