Forum Discussion
DAX Measure to count only rows with specific text
- 1 year ago
Hi pal95
I think this should do the trick.
MEASURE =
CALCULATE ( COUNT ( Table1[SOP 2] ), Table2[Document Type] = "SOP" )
I hope this solved your problem 🙂 - 1 year ago
Fair enough that will just make it easier if all the data is in one table.
I will write table as a placeholder for your tables name where the data is.
MEASURE =
CALCULATE ( COUNT ( Table[User Name] ), Table[Document Type] = "SOP" )
Hi pal95
I think this should do the trick.
MEASURE =
CALCULATE ( COUNT ( Table1[SOP 2] ), Table2[Document Type] = "SOP" )
I hope this solved your problem 🙂
- pal951 year ago
Helper III
No, sorry, table 1 isn't real - it is just something that I created through PowerBI, so I cannot reference it. It should all be through the table 2
- ThomasWeppler1 year ago
Impactful Individual
Fair enough that will just make it easier if all the data is in one table.
I will write table as a placeholder for your tables name where the data is.
MEASURE =
CALCULATE ( COUNT ( Table[User Name] ), Table[Document Type] = "SOP" )