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:
ManuelGeiger
Helper I
3 years agoWorks perfectly fine, thank you!