Overdue Duration in (Days: Hrs: Mins) = Current Date Time (now) - Planned End Date Time
Hi @Bhargaviapple,
With the Issue dimension “Issue” level members in report rows, you can define a new calculated measure with the formula similar to the one below:
CASE WHEN
-- check if issue overdue
DateCompare(
[Measures].[Issue due date],
'today'
) < 0
THEN
-- calculate overdue duartion in minutes
DateDiffMinutes(
[Measures].[Issue due date],
Now()
)
END
Use one of the duration formattings with minutes at its base. Please see more details on defining calculated measures and updating their formatting here - Calculated measures. The report could look similar to the one below:
Best,
Roberts // support@eazybi.com