With eazyBI, you can compare planned vs actual dates for test cycles. eazyBi offers several metrics and properties to describe the testing process. Please see the documentation to see the list of available data and description for each: Zephyr Scale Test Management for Jira.
You might build your report like this:
Select properties “Zephyr Scale Test Cycle planned start date” and “Zephyr Scale Test Cycle planned end date” to see the planned dates for individual cycles.
Select measures “Zephyr Scale Execution first date” and “Zephyr Scale Execution last date” to see the actual start and end of the cycle based on the execution dates.
Use conditional cell formatting to compare planned vs actual dates. For example, apply condition cell formatting on the “Zephyr Scale Execution first date” and change the date color based on its value compared to the planned date. For example, you may use formatting like the one shown in the picture below:
CASE WHEN
DateCompare(
DateWithoutTime([Measures].[Zephyr Scale Execution first date]),
[Measures].[Zephyr Scale Test Cycle planned start date]) < 0
THEN "early"
WHEN
DateCompare(
DateWithoutTime([Measures].[Zephyr Scale Execution first date]),
[Measures].[Zephyr Scale Test Cycle planned start date]) = 0
THEN "on time"
WHEN
DateCompare(
DateWithoutTime([Measures].[Zephyr Scale Execution first date]),
[Measures].[Zephyr Scale Test Cycle planned start date]) > 0
THEN "late"
END
More details on conditional cell formatting are described in the documentation: Conditional cell formatting. Here are details on the DateCompare() function: DateCompare
An alternative representation to compare planned vs actual dates is a Bar chart with a Range chart type (see picture below). In that case, place both planned dates side by side and then both actual dates side by side to draw the correct range bars.
“Actual Start Date” and “Actual End Date” are automatically captured by the Zephyr Scale app based on the testing activities. Those two fields are available in eazyBI as measures “Zephyr Scale Execution first date” and “Zephyr Scale Execution last date”.
The planned dates for individual Test executions are not imported in eazyBI.
I added such improvement to the eazyBI backlog, but I can not estimate when it might be available.