You are here:
TIMENOW
Returns a time value in GMT representing the current moment. Use this function instead of the NOW function if you only want to track time, without a date.
Use
TIMENOW()
Tips
- Do not remove the parentheses.
- Keep the parentheses empty. They do not need to contain a value.
- Use TODAY if you prefer to use a date field.
- The displayed value is based on the organization’s Locale settings.
IF(ISPICKVAL( Rating , "Hot"),
TIMENOW(), TIMEVALUE(CreatedDate))
This formula checks to see if a lead is rated “Hot” and if so, returns the current time. Otherwise it returns the time since someone created the lead.
