Forum Discussion
Anonymous
5 years agoNot applicable
Sort values in matrix values
Hi, i have one table with 4 columns like machine, country ,city and status. pls take a look at the table: ABC123 Spain Madrid Bad ABC123 Yoke Yoke Left Critical ABC123 Ireland D...
- 5 years ago
Hi Anonymous,
Is this what you want?
Try measure as:
Measure = IF( MAX('Table'[country])="Germany", "Really Bad", MAX('Table'[status]) )The pbix is attached.
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
v-xulin-mstf
5 years agoCommunity Support
Hi Anonymous,
Is this what you want?
Try measure as:
Measure =
IF(
MAX('Table'[country])="Germany",
"Really Bad",
MAX('Table'[status])
)
The pbix is attached.
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.