Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
However this only shows the start times. How do I get this graph to show the time inbetween the stat and the end times.
For example:
If a car drove from 10:00 -13:00 using only start times it adds one point to 10:00. I need it to add a point to 10:00, 11:00 and 12:00. How can I do this?
Solved! Go to Solution.
Hi, @CalleWagenaar
You can try the following methods.
Sample data:
Add a table for time.
Measure =
CALCULATE ( COUNT ( 'Table'[Car] ),
FILTER ( ALL ( 'Table' ),
[Start Time] <= SELECTEDVALUE ( 'Time table'[Time] )
&& [End Time] >= SELECTEDVALUE ( 'Time table'[Time] )
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
this helps however it doesn't work with multiple days. How can you combine months?
Hi, @CalleWagenaar
You can try the following methods.
Sample data:
Add a table for time.
Measure =
CALCULATE ( COUNT ( 'Table'[Car] ),
FILTER ( ALL ( 'Table' ),
[Start Time] <= SELECTEDVALUE ( 'Time table'[Time] )
&& [End Time] >= SELECTEDVALUE ( 'Time table'[Time] )
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
61 | |
61 | |
55 | |
38 | |
27 |
User | Count |
---|---|
82 | |
61 | |
45 | |
41 | |
39 |