Forum Discussion
demonfc
7 years agoMicrosoft Employee
Formula help
In need of help writing a formula where I can get a number of the customers my employees have helped. The formula would output the number of times an employee helped the same customer if they helped ...
- 7 years ago
try with
Column = CALCULATE ( COUNTROWS ( Table1 ), ALLEXCEPT ( Table1, Table1[Employee Name], Table1[Customer Name] ) )
Zubair_Muhammad
7 years agoCommunity Champion
try with
Column =
CALCULATE (
COUNTROWS ( Table1 ),
ALLEXCEPT ( Table1, Table1[Employee Name], Table1[Customer Name] )
)