Not sure if this has been brought up before, but looking to create a snippet where I am able to subtract days from each other. I found this topic but it's not quiet what I'm looking for. (Subtracting months)
Here is the full idea for reference:
My team calculates how much to spend per day on Ad Campaigns. They usually apply a formula: Budget / (End Date - Start Date)
The idea would be to use 2 Form Inputs, enter the days, and then receive the difference in number of days. Then also have a Form Input to enter the budget, and return out the Spend Per Day. However, I am struggling to get the dates to subtract from each other.
You can do this using the "X" format option for the {time} command. It converts the time/date to a timestamp which is the number of seconds since 1970 (this is a standard unit of time for computer systems). You can then use that to calculate the time between two dates.
{days=({time: X; at={=end}} - {time: X; at={=start}}) / 24 / 60 / 60} (calculate difference in seconds and then convert to days)
Per day rate {=budget / days; format=$,.2f}
As an aside, we're planning on launching a date selector in the coming months that will make entering a date simpler. You can take an early look at it here:
This is so cool! Thank you so much! Super helpful! I see the part of my snippet that I was struggling with so thank you. Going to be a huge improvement to productivity!
SIMILAR to the above thread but trying to use the formdate for date entry and calculation. and ideas? Just want to subtract the two dates and yield the number of days between them.
{days=datetimediff(TODAY, SURGERY, "D"); trim=right} my output snippet unerrored
Thanks
update: figured the problem out. you can't use the MM/DD/YYYY date format. The original and what works is the YYYY-DD-MM format of date.