Forum Discussion
mwinkels
10 years agoFrequent Visitor
creating a calculated column between two tables
I'm trying to create a calculated column that counts the number of actions taken by a person. In my case I have two tables. Table 1 has a list of unique email addresses. Table 2 has a list of actions...
- 10 years ago
MyCount = CALCULATE(COUNTROWS(RelatedTable),RELATEDTABLE(RelatedTable))
Or
MyCount1 = COUNTX(RELATEDTABLE(RelatedTable),RelatedTable[SomeColumn])
Greg_Deckler
10 years agoCommunity Champion
MyCount = CALCULATE(COUNTROWS(RelatedTable),RELATEDTABLE(RelatedTable))
Or
MyCount1 = COUNTX(RELATEDTABLE(RelatedTable),RelatedTable[SomeColumn])
- mwinkels10 years agoFrequent Visitor
That worked. Thanks very much for your help!