Forum Discussion
Anonymous
8 years agoNot applicable
HELP! Employee Size Range Chart/Table
I'm not sure what the best practice for this kind of thing is. I've tried a few things and have gotten close, but I don't know where to go from here. So I have this table that contains Company ID, Em...
- 8 years ago
Seems like you could just create a New Table and use SUMMARIZE?
Table = SUMMARIZE(EmployeeTable,[Company ID],"Count",COUNT([Employee ID]))
Something along those lines?
Greg_Deckler
8 years agoCommunity Champion
Seems like you could just create a New Table and use SUMMARIZE?
Table = SUMMARIZE(EmployeeTable,[Company ID],"Count",COUNT([Employee ID]))
Something along those lines?
Anonymous
8 years agoNot applicable
Thank you!! Works flawlessly and is much simpler than what I was originally trying to do.