Hi I use Time diffrence formula to calculatie how long some tasks take.
IF
(
ISBLANK([End Date]),
HOUR(NOW() - [Start Date])/24,
HOUR([End Date] - [Start Date])/24
)
Forumla works great and give mi days in Dicemal bettween
Now and Start Date
or if someone fill End Date beetween End Date and Start Date
Problem is it recalculated only if update row
I want to see that update every sync
How to do that ?
Should I put that formula in Excel insted of Appsheet ?