I’m trying to get an EventEndTime field to calculate minutes, but am having some trouble. I’ve searched the forum but hadn’t found anything that will work> Actually, this is working part way, but if EventDuration is 1.7, the time is rounded. I need EventEndTime to display 3:35, not rounded off. Can someone point me in the right direction? Thanks ![]()
ED := @If(EventStartTime = “” | EventDuration = “”;@Return(“”); EventDuration);
vdate := @Date(@Year(EventDate);@Month(EventDate);@Day(EventDate);@Hour(EventStartTime);@Minute(EventStartTime);@Second(EventStartTime));
@Adjust(vDate;0;0;0;ED;0;0)