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
SnehalCSnehalC 

Cross Object formula in fields

I want to populate some lookup fields based on selection of value in other lookup fields...
I tried to autopopulate lookup field (some person name) based on some other lookup field... this is the formula... Apps__r.Business_person__c
But in the detail page it displays values like: ythhWFv12GD... why so? It should display person name..
Vinita_SFDCVinita_SFDC
Hello Snehak,

Can you share your formula for better understanding? Are you using triggers for this functionality or you are using workflows for this?
SnehalCSnehalC
I am writing formula in formula field. I modified the formula... It is displaying the name correctly now.
HYPERLINK( App__r.person_contactname__r.Id,  App__r.person_contactname__r.FirstName & " " &  App__r.person_contactname__r.LastName )

I am facing another issue. When I click on the person name, it does not navigate to that user record. Rather it shows the current record itself. Any solutions?