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
Ken_KoellnerKen_Koellner 

Any way to set default based on lookup up or some other procedure

I'd like to be able to set defaults when a user hits the "New" button on a custom object based on some simple logic.

 

Like set a value to a lookup from their User record?

 

Is there any way to do this or can defaults only be hard-coded values?

 

I guess the alternative would be to override the New button with some VF code but that's a heck of a lot of work to initialize a few fields.

 

NPNP

You can use the url to set the default value ; by overridding the standard button and make a new button.

 

 

asagarwal.developerasagarwal.developer

Have you explored using the "Default Value" option under "General Options" when defining a field ? That option allows you write some formula to come up with the default value for the field. Its available under Your Name -> Setup -> App Setup -> Create -> Objects -> <Object Name> -> Click Edit for the Field

Ken KoellnerKen Koellner

I looked at the options under a text field and checked what you can do with a default formula and see that I can set a default value based on a lookup to a related object.

 

My issue was with a pick-list field.  It appears that with a pick-list field, the only way to set a default is to check one of the values in the list.  You can't use a formula to set a default on a pick-list field.