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]))
richbenmintz
Resident Rockstar
7 years agoHi Anonymous
I believe you are trying to create a summary table, try the following.
click in the model tab-> create table -> enter formula (please note table names will be different in your model)
Table = SUMMARIZE('Table1', Table1[User Name], Table1[CreationTimeUTC.1], "index count", sum(Table1[Index]))Hope that helps