Forum Discussion
Ncio
Helper II
4 years agoCount rows with no rows in a related table
Hello, I have 2 related table, and I'd like to calculate the number of rows in table without any values in table 2. ==> For the example below, the result should be 2 (rows 3 and 4 are not in tab...
SpartaBI
Community Champion
4 years agoNcio in case I understand your model is like this:
Then, you can create this measure:
Measure =
COUNTROWS(
FILTER(
Table1,
ISEMPTY(RELATEDTABLE(Table2))
)
)In case it solved your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
- Ncio4 years ago
Helper II
Thank you!