Forum Discussion
JacobCoops
6 years agoFrequent Visitor
Count If measure
Hello I am trying to create a measure that returns the percentage of customers with 3 or more logins. My dataset is a list of CustomerIDs and timestamps (logins) where one row equals one login. I...
- 6 years ago
Measure =
VAR __Table =
FILTER(
SUMMARIZE(
'Table',
[KundeID],
"__Count", COUNTROWS('Table')
),
[__Count] > 3
)
RETURN
COUNTROWS(__Table)
Greg_Deckler
6 years agoCommunity Champion
Measure =
VAR __Table =
FILTER(
SUMMARIZE(
'Table',
[KundeID],
"__Count", COUNTROWS('Table')
),
[__Count] > 3
)
RETURN
COUNTROWS(__Table)
- JacobCoops6 years agoFrequent Visitor
Hi Greg
This is friggin amazing. Thank you very much!
- Greg_Deckler6 years agoCommunity ChampionCool, glad it worked for you! 🙂