Fetch Number of days between task

I’m managing a project with tasks that have different durations. Which formula i can use to find the number of days between task start and end dates?

You can use the DATEDIFF() formula like this:

DATEDIFF({End Date}, {Start Date}, "days")

This formula calculates the number of days between the start and end dates of a task.