Forum Discussion
IvanS
Helper V
3 years agoCompare 2 columns from different tables without relationship
Hi guys, I have small problem with performing DAX calculation between 2 tables that have no active relationship. Here is example tables with the red highlighted column: Table: FACT_Tasks ...
- 3 years ago
IvanS , a new column in FACT_Cases
CALCULATE( COUNT(FACT_Tasks[Id]),filter(FACT_Tasks, FACT_Tasks[RelatedTo_Id] = FACT_Cases[Id]))
amitchandak
Super User
3 years agoIvanS , a new column in FACT_Cases
CALCULATE(
COUNT(FACT_Tasks[Id]),filter(FACT_Tasks, FACT_Tasks[RelatedTo_Id] = FACT_Cases[Id]))