Forum Discussion
adealboran777
8 years agoFrequent Visitor
Date and Two Table
Hi! Let's see if somebody knows how to do this. I have two tables: The first one records several interactions with an app, which can be of Type A or B, during a period of time. Date. I...
- 8 years ago
So this is going to basically look like:
Interactions Measure = COUNTROWS(FILTER('InteractionsTable',[Interaction]="A")) Users Above Threshold Measure = COUNTROWS( FILTER( SUMMARIZE('UserTable',[UserID],"__Interactions",[Interactions Measure]), [__Interactions] >= 5 ) )For users with 5 or more interactions.
Greg_Deckler
Community Champion
8 years agoSo this is going to basically look like:
Interactions Measure =
COUNTROWS(FILTER('InteractionsTable',[Interaction]="A"))
Users Above Threshold Measure =
COUNTROWS(
FILTER(
SUMMARIZE('UserTable',[UserID],"__Interactions",[Interactions Measure]),
[__Interactions] >= 5
)
)For users with 5 or more interactions.
- adealboran7778 years agoFrequent Visitor
Thank you!