I'm trying to come up with field update formula to take the time they enter and remove the seconds. Thoughts?
2 respuestas
YEAR(), MONTH(), and DAY() can only be used with a date field, not a datetime, but that did help me create this:
DATETIMEVALUE(MID(TEXT(LastModifiedDate), 0, 16) + ":" + "00")
My field isn't last modified, but it works for testing purposes.