function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ET 10ET 10 

Change button color in highlights panel

I am looking to change the color of the buttons in the hightlights panel to red or green depending on if they are completed. The buttons are screen flows and we have check boxes to indicate completion.
Shri RajShri Raj
DATETIMEVALUE(TEXT(TODAY()) + " 12:00:00 PM")


Yes, you can use the following formula to populate a custom date/time field with today's date and 12:00 PM:This formula first uses the TODAY() function to get today's date, then converts it to a text value using the TEXT() function. The text value is then concatenated with the string " 12:00:00 PM" to create a text value that represents today's date and the static time of 12:00 PM.
Finally, the DATETIMEVALUE() function is used to convert the text value to a date/time value, which can be stored in your custom field.
With this formula, you will be able to filter specifically for the 12:00 PM time stamp, while still populating the date/time field with today's date.