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
Glock9Glock9 

Date and time Naming Convention

I would like to have a field in Opportunity to time name a Transaction by the date and the month it is created.In my example I want to create a Transaction date when the Opportunity become a Transaction and then but code next to it so it is a unique name for a Transaction.
marco_29marco_29

You need to create a custom field (unique_Transaction__c) and make it unique.

Once an opportunity is saved a workflow can fire and update your custom field (Unique_transaction__c) and update the content with a formula like Day(created) & "-"& Year(created).