Forum Discussion
Anonymous
7 years agoNot applicable
What would be the exact formula for this count function?
Hi, I want to come up with a formula which aggregrates the number of creation times per person based on one day. The column index is just 1. The second image shows that the...
- 7 years agoAnonymouscreate a calcualted columncountfunction = CALCULATE(SUM(Table1[Index]), ALLEXCEPT(Table1, Table1[User Name], Table1[CreationTimeUTC.1]))
vanessafvg
Community Champion
7 years agoAnonymous
create a calcualted column
countfunction = CALCULATE(SUM(Table1[Index]), ALLEXCEPT(Table1, Table1[User Name], Table1[CreationTimeUTC.1]))
Anonymous
7 years agoNot applicable
Thank you! This worked.