Forum Discussion
Frank145
Mar 25, 2024Brass Contributor
Counting unique devices based upon a "Wave" column
Hi, I am trying to get a count of all UNIQUE devices in a list that are planned to move in a specific wave. Attached is the example workbook I am working with. In the "MasterServerToApp" tab I am ...
ConnorAlign
Mar 25, 2024Copper Contributor
Hi Detlef,
I am working with Frank145 and after plugging in the formula, I see that it is only counting the unique devices in the "Server" column. While the original ask was to Count unique devices that were in a specified wave column.
Essentially, Only counting the unique devices based on a cell value/criteria.. In this case we have a "Wave" column to distiguish the different waves these servers may move during.
Let us know if further info is needed.
Thanks!
I am working with Frank145 and after plugging in the formula, I see that it is only counting the unique devices in the "Server" column. While the original ask was to Count unique devices that were in a specified wave column.
Essentially, Only counting the unique devices based on a cell value/criteria.. In this case we have a "Wave" column to distiguish the different waves these servers may move during.
Let us know if further info is needed.
Thanks!
Detlef_Lewin
Mar 25, 2024Silver Contributor
Insert the FILTER() function.
=COUNTA(UNIQUE(FILTER(Table4[Server],Table4[Wave]=1)))
It does not change the result. Still 2.
- ConnorAlignMar 25, 2024Copper ContributorThank you, this works.