Hi Community,
In Structure, can you create a formula field that outputs the the diff between two date/time fields in minutes?
Hi @Mikael Sandberg I'm pretty sure that's possible. Here's the Structure Cloud Sample Formulas page.
Here's a sample formula for "days past due":
IF dueDate < NOW():
DAYS_BETWEEN(dueDate, NOW()) CONCAT " days late"
Here's a link to the Structure Formula Duration Functions page.
@Kelly Arrey is right, it is possible using a formula column. The function you will want is HOURS_BETWEEN(). You can multiply by 60 to get the minutes.
something like:
HOURS_BETWEEN(datetime1,datetime2) * 60
Best,
David
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome, thank you both!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.