Take Advantage of the New Custom Time Field in Spring ’18

By

In Spring ’18, we released a new custom time field as an open beta. It means that this new field type will be available in both production and sandbox orgs. While it’s marked as ‘Beta’, this is a high-quality feature that is safe to use. However, there are a few limitations that you should be aware of and those can be found in our release notes.

What is the Custom Time Field?

The time field is a new addition to the widely used Date and DateTime fields. Now you can store specific times independently from a date. Time field allows you to store time as an independent value. You can think about it as the time on a wall clock—it is that particular time where you are, regardless of what time it is somewhere else in the world.

The time field comes as a separate field type, and also as a new return type for your formula fields. So, you can create a formula field that will return a time value.

Let’s look at a use case example of how to use this new field: You run a hotel empire and would like to get some insight into how early or late people check in and out from each of your properties. You can store check in and check out times for each of your hotels as a time field. And, check in times are always stored in local time so it doesn’t require a time zone adjustment. It’s a perfect use case!


Now that you have this information stored, let’s take a look at how we can leverage it in formula fields and validation rules.

Formulas and Validation Rules

So, let’s get to the fun part! The time field comes with a set of handy formula functions. Say for each check in/check out, you want to know how early or late it happened. To accomplish this, every time a customer checks in or out a hotel receptionist needs to create a record to specify when that event happened.

You can also create a simple formula to calculate how much earlier or later than the appointed time the check in or check out happened.

IF( ISPICKVAL(Type__c , "Check In") ,
Hotel__r.Check_In_Time__c - Time__c,
Hotel__r.Check_Out_Time__c - Time__c) / 3600000

(Note: this formula will return the time difference in milliseconds; this is why we convert it to hours by dividing by 3,600,000.)

Now, let’s use time fields in validation rules. Your hotels charge a late check out fee, and you want to make sure that hotel staff doesn’t forget to apply that fee. So, if a check out happens more than 2 hours after the official check out time, you want to show a validation error (unless the customer already paid that fee or it was waived for them).

Here’s a validation rule formula that will do the trick for you.

IF( ISPICKVAL( Event_Type__c , "Check Out"),
IF( Late_Check_Out_Approved__c = FALSE,
IF( (Hotel__r.Check_Out_Time__c + 720000) < Time__c, TRUE, FALSE),
FALSE),
FALSE)

Some other handy time functions to consider:

  • TIMEVALUE()
  • MILLISECOND(), SECOND(), MINUTE(), HOUR()

Resources

Now you can apply these simple examples in your org to solve your own business scenarios! If you want to learn more, check out the Spring ’18 release notes. You can also join other time field Trailblazers in our Trailblazer Community dedicated to the time field where you can ask questions and provide feedback. And, don’t forget to check out Date/Time formula Trailhead unit!

Post-Meeting Voice Notes: What Admins Need to Know

If you’ve already enabled the In-Person Meeting Assistant, you’ve solved the problem of capturing live meeting transcripts. But what happens when the meeting ends without one?  Maybe the customer didn’t consent to live recording. Maybe the rep forgot to start it. Maybe it was an impromptu conversation in the lobby that turned into a real […]

READ MORE
Security Center Essentials

Security Center Essentials

Security Is Your Superpower — Let’s Make It Easier! As admins we’ve all been there: navigating dozens of Setup pages, juggling permissions, auditing connected apps, and reviewing IP ranges to keep our orgs locked down. Security isn’t just a checkbox for us; it’s a core responsibility we carry Every. Single. Day.  With the evolution of […]

READ MORE
Bring CRM Conversations Into Slack With Salesforce Channels and Slackbot

Bring CRM Conversations Into Slack With Salesforce Channels and Slackbot

As a Salesforce Admin, you’re not just responsible for configuring Salesforce; you’re constantly looking for ways to help your teams work more efficiently. Whether it’s reducing clicks, streamlining processes, improving user adoption, or helping teams collaborate, your goal is to make work easier. Connecting Salesforce and Slack is a great first step toward bringing CRM […]

READ MORE