I'm making an "8 hour entry" publisher action, where my user can specify type of activity and give the day, and I'll calculate the rest.
How do I build a formula to populate Start Date Time with today's date at 6:00AM, and then End Date with today's date at 2:00PM?
Thanks!
2 respostas
Micah, your formula would be this:
DATETIMEVALUE(
TEXT(YEAR(TODAY())) + "-" +
TEXT(MONTH(TODAY()))+ "-" +
TEXT(DAY(TODAY())) +
" 06:00:00"
)
Now remember that the above DATETIMEVALUE is always calculated in GMT so you will have to make adjustmetns to the formula to make it show the correct value. Good luck!