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
ShannonFlynnNYShannonFlynnNY 

Custom field as "clickable" field and Auto-fill Date field

I have created a custom object with a "Project ID" (Auto Number field), "Status" (picklist field), and a "Completion Date" (Date) field. When in a custom view, is it possible to have the "Project ID" field as a "clickable" field that when clicked on would bring me to the actual record? The only field that is clickable at the moment is the "Subject" field.
Also, is it possible to have the "Completion Date" auto fill when a picklist value of "Complete" is selected from the "Status" field?
 
Thanks
 
jpizzalajpizzala
To solve your Completion Date auto-fill issue, you could implement workflow that would fire after the custom object is created/edited and Status is equal to Complete.  Add a field update to your workflow rule with the value of TODAY().  Note that you will need Enterprise or above to use workflow.

As for your Project Id clickability issue, there is no workaround for this that I am aware of.