Forum Discussion
How to replace values at dashboard level?
- 6 years ago
Hi Anonymous ,
1) This is determined by the table relationship. I made an example:
My data model:
My visualization:
Maybe your data model is different from mine, but the principle is the same.
2) First, the dashboard is a concept in Power BI Service, while DAX can only be used in Power BI Desktop.
For your problem, you can try to create a measure like this:
Measure = IF( MAX(Table2[Public ]) = BLANK() && MAX(Table1[Index]) <> BLANK(), "YES", MAX(Table2[Public ]) )Best regards,
Lionel ChenIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
1) This is determined by the table relationship. I made an example:
My data model:
My visualization:
Maybe your data model is different from mine, but the principle is the same.
2) First, the dashboard is a concept in Power BI Service, while DAX can only be used in Power BI Desktop.
For your problem, you can try to create a measure like this:
Measure =
IF(
MAX(Table2[Public ]) = BLANK() && MAX(Table1[Index]) <> BLANK(),
"YES",
MAX(Table2[Public ])
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.