Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I'm creating a dashboard which will show, among other things, scores out of 5 for a maturity test in a simple bar chart. At present, all units are scoring in a 1-3 range. As such, in my dataset the maturity scores do not include any 4s or 5s.
I'd like my bar chart to have 4 and 5 labelled permanently from the start (and 1, 2 and 3 to stay there when all units eventually mature). How can I achieve that?
Solved! Go to Solution.
Hi, @rk761651
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
Score:
There is a relationship between two tables.
You may create a measure as below.
Result =
COALESCE(
SUM('Table'[Value]),
0
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @rk761651
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
Score:
There is a relationship between two tables.
You may create a measure as below.
Result =
COALESCE(
SUM('Table'[Value]),
0
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @rk761651 - The values 4 and 5 are not shown because your data model doesnt recognise these values unless you storing Maturity scores values (1, 2,3,4, 5) in a seperate table?
and connect your actual data table with Maturity score table. This way data model will know values containing 1 to 5 and use this column from Maturity Score values and show items with no data.
Hope this helps.
Cheers,
-Namish B
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 71 | |
| 50 | |
| 46 | |
| 44 |