Hi guys I have a problem with simple dataset
In the table I get the same results for the count of Child friendly resort whether is by country or by continent.
My model seem to be in good shape since it doesn't happen with values from other columns
this is the measure being used
Count of Children friendly resorts = calculate(
COUNTROWS(
'Resort Classification Dim'),
Filter(
ALL(
'Resort Classification Dim'),
'Resort Classification Dim'[Child Friendly]=TRUE)
)
I tried changing the data type from true or false to text so I can try using countx on the measure but didn't make a difference
any advice? thanks in advance