Forum Discussion
Data model question
Hello
I would like to hear your best practise dealing with such data model.
- I have dimCustomer table which connects fact_open and fact tables.
I want to show in the report only those customers that have "amount" from "fact_open table". That mean the filter should only show only those names that have amount non blank:
What would be the best practise?
How can I achieve the result?
The file:
https://mega.nz/#!j3IC2KyY!MffHMC37adgpYklv2lFYmJ1iFBlHVG0F3T_95dBXl2c
Regards,
Ignas
a
- Anonymous7 years ago
ignas,
You can create a column in dimcustomer table using DAX below. Then drag the column to page level filter and set its value to "Not blank".checkColumn = COUNTROWS(RELATEDTABLE(fact_open))
Regards,
Lydia
6 Replies
- AnonymousNot applicable
ignas,
You can create a column in dimcustomer table using DAX below. Then drag the column to page level filter and set its value to "Not blank".checkColumn = COUNTROWS(RELATEDTABLE(fact_open))
Regards,
Lydia- ignasAdvocate II
Hey Anonymous
You are absolutely amazing. Such a simple solution solves my big problems.
Thanks a lot.
Regards,
Ignas