Forum Discussion
Anonymous
3 years agoNot applicable
Date table and multiple columns/tables
Hi all, Hi all, I have a data table as part of my report - however, I have 3 separate dates that I need it to associate with across two tables. For example: Contact table - Latest review C...
- 3 years ago
You can activate the relationships inside measures, e.g.
Num reviews = CALCULATE ( COUNTROWS ( Contact ), USERELATIONSHIP ( 'Date'[Date], Contact[Last review date] ) ) Num contacts = CALCULATE ( COUNTROWS ( Contact ), USERELATIONSHIP ( 'Date'[Date], Contact[Last contact date] ) )
johnt75
Super User
3 years agoYou can activate the relationships inside measures, e.g.
Num reviews =
CALCULATE (
COUNTROWS ( Contact ),
USERELATIONSHIP ( 'Date'[Date], Contact[Last review date] )
)
Num contacts =
CALCULATE (
COUNTROWS ( Contact ),
USERELATIONSHIP ( 'Date'[Date], Contact[Last contact date] )
)
- Anonymous3 years agoNot applicable
Ah - perfect! Thank you so much