You need to sign in to do that
Don't have an account?

field Update
I have 2 custom objects. (Proj and Event). While creating a new Proj, I need to populate the proj name(mandatory field) with the Event name(lookup field) when the event name is filled.
I used workflow rule and field update to get this done but it isnt working.
This is what I used
Field to update : Project Name
Formula Value : Event_Name__c
Even i tried this, but in vain
Field to update : Project Name
Formula Value : Event_Name__r.Name
Any ideas ?
I think you should try the following:-
Field to update : Project Name
Formula Value : Objectname__r.FieldName
in your case if
Event is a custom object:-
Formula Value : event__c__r.Event_Name__c
else
Formula Value : event.Event_Name__c
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved