Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have several models, each model has 2 scores: credbility and criticality. I need both to make a risk assessment. the risk assessment is mixed in with random data that i'm not intrested in.
This is how the table looks
MODEL | TYPE | Value |
Model A | randomdata | 5 |
Model A | randomdata | 5 |
Model A | credbility | 3 |
Model A | criticality | 2 |
Model B | randomdata | 3 |
Model B | randomdata | 4 |
Model B | credbility | 2 |
Model B | criticality | 1 |
Model C | randomdata | 4 |
Model C | randomdata | 3 |
Model C | credbility | 2 |
Model C | criticality | 4 |
For each model I want to know the criticality and credbility so I can use it in a 5x5 risk assessment matrix. I have the matrix but i'm new to power bi so I don't know to extract the values for each model. I have looked at group by and conditional columns been searching around yesterday and played around with unpivoting and transpose but there is something i'm not really getting and I would appreciate all the help I could get!
If I could get the values to for example: Model A, 3,2 or maybe a different table with
Model | Credbility | Criticality |
Model A | 3 | 2 |
Model B | 2 | 1 |
That could work perhaps? i'm not sure what to do to get there or what's best.
Thankful for any help that I can get!
Solved! Go to Solution.
Hi @Anonymous ,
Try to create measure formula like below:
Measure =
IF ( MAX ( 'Table'[TYPE] ) <> "randomdata", MAX ( 'Table'[Value] ), BLANK () )
If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Try to create measure formula like below:
Measure =
IF ( MAX ( 'Table'[TYPE] ) <> "randomdata", MAX ( 'Table'[Value] ), BLANK () )
If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
79 | |
58 | |
35 | |
34 |
User | Count |
---|---|
99 | |
59 | |
56 | |
46 | |
40 |