Karlstens wrote:
This a million times. Subscription start & end dates are very common for many businesses, and we need a way for a formula driven date to appear within the calendar view.
For example, the below is a “Subscription End” formula column, and I need the resulting date to appear in the calendar view to server as a follow up reminder.
IF({Subscription Start} = BLANK(), BLANK(), DATETIME_FORMAT(DATEADD({Subscription Start}, 365, 'days'), "DD-MM-YYYY"))
As of June 2017, you can now use formulaic dates in calendar view :slightly_smiling_face:
One thing to note is that the DATETIME_FORMAT
formula returns a string, not a date. You can convert a date string into a date using the DATETIME_PARSE
formula.
In the example above, the DATEADD
formula already returns a date, so the complete formula would become:
IF(
{Subscription Start} = BLANK(),
BLANK(),
DATEADD({Subscription Start}, 365, 'days')
)
This will return a date, which you can use in a calendar view!