Forum Discussion
PowerBI123456
5 years agoPost Partisan
First User Touch
I am trying to determine the first user to touch an account and to exclude any automate touches. For example, below is my data. For account 1, the first user should be Bob and for account 2, the firs...
- 5 years ago
PowerBI123456 , Try a new measure like
measure = calculate(sum(Table[Index]), filter(Table,Table[Index] = calculate(max(Table[Index]), allexpcept(Table,table[Account]), table[Activity] <> "Automate")))
PowerBI123456
5 years agoPost Partisan
amitchandak Looking at the index. First user who has the greatest index per account and that user cannot be "automate". Does that help?
amitchandak
5 years agoSuper User
PowerBI123456 , Try a new measure like
measure = calculate(sum(Table[Index]), filter(Table,Table[Index] = calculate(max(Table[Index]), allexpcept(Table,table[Account]), table[Activity] <> "Automate")))