Forum Discussion
Anonymous
5 years agoNot applicable
Filter value without relationship
Hi All, I have two tables: Fact_Actual and Options. These two data tables have no relationship at all. In the dashboard, I will have a table and slicer. Table contains only [Value] and [Selectio...
S_JB
5 years agoResolver III
You could create a new column within the Fact_Actual table. The logic is below:
Options =
IF('Fact_Actual'[Category]="C","No",
IF('Fact_Actual'[Category]="D","Maybe",
"Yes"))
Anonymous
5 years agoNot applicable
Hi S_JB , thanks for the reply. There will be more data than A-D, it will be troublesome to do this method
- v-easonf-msft5 years agoCommunity Support
Hi, Anonymous
I'm not sure what you mean by "it will be troublesome".
According to the information you provided,using the if statement to judge is the most direct solution.
Best Regards,
Community Support Team _ Eason