Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
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.
@Anonymous , Create it like
PercentCompletedOnTime = ROUND(DIVIDE(Count('Table'[On Time]), Count('Table'[Object ID])), 2)
and mark it as % measure using measure tool
User | Count |
---|---|
85 | |
73 | |
73 | |
57 | |
51 |
User | Count |
---|---|
43 | |
41 | |
35 | |
34 | |
30 |