Forum Discussion
ManuelGeiger
Helper I
3 years agoDAX to summarize multiple ratings
Hi all, I would like to create a measue to show the overall oil condition of multiple different oil tests. In the screenshot below you can see different results for multiple components of one ma...
- 3 years ago
Try to create a new with the code below:
Measure =VAR _min = MIN(TableName[Ranking])RETURNIF(_min = "Action","Action",IF(_min = "Caution","Caution","Normal"))I tried and it worked like this:dataset:
FreemanZ
Super User
3 years agoTry to create a new with the code below:
Measure =
VAR _min = MIN(TableName[Ranking])
RETURN
IF(
_min = "Action",
"Action",
IF(
_min = "Caution",
"Caution",
"Normal"
)
)
I tried and it worked like this:
dataset: