Forum Discussion
NoordenNL076
4 years agoRegular Visitor
Count with exceptions
Hello, I'm trying to determine the count of a storage type. The storage type is based on the maximum volume a product has within a certain period. However, before linking the storage type there a...
- 4 years ago
Hi NoordenNL076
not sure what exactly is your requirement. However, there are many ways to "countif" using dax. For exsmple
COUNTROWS ( FILTER ( TableName, TableName[ColumnName] = "Value" ) )
or
SUMX. (
TableName,
IF ( TableName[ColumnName] = "Value", 1 )
)
v-henryk-mstf
4 years agoCommunity Support
Hi NoordenNL076 ,
Whether the advice given by tamerj1 has solved your confusion, if the problem has been solved you can mark the reply for the standard answer to help the other members find it more quickly. If not, please point it out.
Looking forward to your feedback.
Best Regards,
Henry