
I am trying to make a field required for the sales team but I am having a hard time to make it work as its the first couple of weeks using Salesforce.
Today we have a field called stage which can be closed lost or closed won etc. However, I want to make a sub-stage mandatory for the sales people where it says Lost to Competitor, Price etd. Would you be able to help me with thi? Bear in mind my experiance is limted.
Thanks a lot!
2 answers
Thanks a lot for the quick reply. I am sorry but I dont understand most of that for instance finding the Picklist field under the Define Dependent Picklists and management settings. Would you be able to dumb it down for me please? Hi Per, or if you dont want to use dependent picklist as above ( I would recommend to go with the above approach as it offers a better user experience) you could use a validation rule as below
AND(
TEXT(StageName) = 'Closed Lost',
ISBLANK(TEXT(Sub_Stage__c))
)
please use the insert field button to select teh field API Name of Sub stage field