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
vicky30vicky30 

How to stamp asset name with the same value of pick list field

Hi Friends,
I'm stuck in the Workflow rule.. The requirement is whenever we changing the Competitor Product value, the value name should be a stamp to the Asset name. At the time of Insert/Update. The below criteria are not working.
Workflow Rule Criteria
-----------------------------
AND(
OR(
ISNEW(),
ISCHANGED(Competitor_Product__c)
),
NOT(ISPICKVAL(Competitor_Product__c, ""))
)
------------------
Field Update
------------------
ObjectAsset  
Field to UpdateAsset: Asset Name
Field Data TypeText
Re-evaluate Workflow Rules after Field Change
Formula ValueTEXT(Competitor_Product__c)
User-added image

Please help me on this.

Thanks in Advance.
Vicky
AnudeepAnudeep (Salesforce Developers) 
Hi Vicky,

I don't think you can achieve this using a workflow. I think this will require some programming. I recommend taking a look at this post