Forum Discussion
[Project] percentage until now
Hello everyone, how its going?
I have a problem with my project. The red circle is the big poblem.
This graphic shows me the total of requests (dark blue), the total of requests picked on time (light blue) and the percentage (requests picked on time / total - the orange line. The X axis is the hours that the requests needs to be picked.
The problem is, I need to show the percentage until now, not all the day. For example, It's now 8'o clock, so the percentage needs to show me until 8'o clock.
Like this: 6 AM 100% + 7 AM 100% + 8 AM 100%, so the measure needs to return me 100%, not 83%.
1 Reply
- rautaniket0077
Resolver I
Try this below measure.
Calculate(
The Percentage --- considering its a measure
,hours <= now()
)
if this measure won't work then please provide the sample data.