Hi
I wonder if there is a way to calculate dates between 2 issue in a report
For example if I have a Start date and wants to know for how many working days there are to Due date and also from Due date to Go live date
I have tried that one but I find it to work because If have different name on all projects
It would be great if I could take the data direct from column Start Date for example
Is there a way to do this?
You have the date properties “Issue due date” and “Issue Start Date” in the report. Why do you address different properties in the formula? Try the approach suggested by @VasileS with the properties you have in the report. See the suggested formula below:
DateDiffDays(
[Measures].[Issue Start Date],
[Measures].[Issue due date]
)