Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi, I'm asking for help plotting a measure onto the Y-axis of my horizontal graph in PBI Desktop. Thanks in advance for all responses!
I have a table of dates (for the sake of the example I only care about the month and year), objects with an ID, and a column signifying if each object was "on time". For other reasons this column is either "Y" or null. The table below is an example of what I have.
Date | Object ID | On Time |
02/2022 | abc | Y |
02/2022 | def | null |
03/2022 | ghi | Y |
03/2022 | jkl | Y |
05/2022 | mno | null |
I also have a measure in my dashboard which counts the percentage of "on time" objects vs total objects. The goal of this measure is so that I can see the total percentage of "on time" objects each month. This is my measure:
PercentCompletedOnTime = FORMAT(ROUND(DIVIDE(Count('Table'[On Time]), Count('Table'[Object ID])), 2), "Percent")
Solved! Go to Solution.
@pxb015 , Create it like
PercentCompletedOnTime = ROUND(DIVIDE(Count('Table'[On Time]), Count('Table'[Object ID])), 2)
and mark it as % measure using measure tool
@pxb015 , Create it like
PercentCompletedOnTime = ROUND(DIVIDE(Count('Table'[On Time]), Count('Table'[Object ID])), 2)
and mark it as % measure using measure tool
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
101 | |
98 | |
97 | |
38 | |
37 |
User | Count |
---|---|
152 | |
121 | |
73 | |
71 | |
63 |