Forum Discussion
MasterSonic
Helper IV
3 years agoCount unique per other columns
Hello, Code Plan Status 101 Buy Ready 102 Sell Ready 102 Sell Ready I would like to count unique code by Status and Planm but I have duplicates in Code column. So on...
- 3 years ago
not sure if i get you, try this
Measure2 =
COUNTROWS(SUMMARIZE(TableName,TableName[Plan],TableName[Code]))
FreemanZ
Super User
3 years agonot sure if i get you, try this
Measure2 =
COUNTROWS(
SUMMARIZE(
TableName,
TableName[Plan],
TableName[Code]
)
)
MasterSonic
Helper IV
3 years agoThank You for help I have added below and I got what wanted.
Measure2 =
COUNTROWS(
SUMMARIZE( FILTER( Table,Table[Status] = "Ready"),
TableName[Plan],
TableName[Code]
)
)