How to find the total days from sales date to ship date
You can achieve this with the help of the calculated field. We have datediff() function which can be used to calculate the difference.
Syntax: DATEDIFF(date_part, date1, date2, [start_of_week])
And so, you can write like: DATEDIFF(‘day’, order_date, ship_date)