Forum Discussion
Score depending on answer
- 4 years ago
Hi Bfdc ,
Please try this :
1) Create two tables and load them into report view
Table 1 : Risk
Table 2: Likelihood2) Put the likelihood column into a slicer and the risk columns into a table visual.
3) Create a measure named "Score" as shown belowScore =var _sel = SELECTEDVALUE(Likelihood[Likelihood])var _score =SUMX(risk,Risk[Consequence] * _sel)Return_scoreFor any value of likelihood selected, it will show you scores for all risk no.s
Kind regards,
Rohit
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Everything is of great help!
rohit_singh , I do have the relationship between both folders, but I do need to select one likelihood per risk to filetr the risk applied and make the score work properly.
So, I've created one table per risk (7 in total), so I could create 7 measurements for the scoring with the DAX you suggested (Thnaks!). I'm sure there is a way to do this more simple with DAX, but just cannot managed
That's how it should look like at the end, user selects likelihood per risk. So, that figure times the "consequence" of each risk" will give the score in a radar chart
If anyone comes up with a more simple way, great!
Thank you so much! 🙂