I have created this formula that will set the duration when something is selected:
SWITCH(
{Select},
‘Code Review’, 1200,
‘Design Review’, 1200,
‘Resume Review’, 1200,
‘Career Coaching’, 1800,
‘Team Coaching - Design’, 3600, ‘Team Coaching - Code’, 3600, 1200
)
It is then connected to another formula field to create and End Time:
DATEADD({Time}, {Duration}, ‘seconds’)
However, the time I get returned is 5 hours later not the minutes I have added. Anyone have a suggestions.