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
VSK98VSK98 

Getting this Error: Field Name does not exist. Check spelling.

Hi,

I have taken the formula field to pull contact name from other custom object..........but it's showing the error Field Name does not exist. Check spelling.

contact is parent
custom object is Child

Lookup field is Practitioner_Name__c

I have given like dis: Practitioner_Name__r.Name


But error is coming.....Pls help me out.


Adv Thnx
Siv
Best Answer chosen by VSK98
Vinoth Vijaya BaskerVinoth Vijaya Basker
Hi, 

Please try the below formula, 

Practitioner_Name__r.FirstName + Practitioner_Name__r.LastName

Thanks,
Vinoth

All Answers

Vinoth Vijaya BaskerVinoth Vijaya Basker
Hi, 

Please try the below formula, 

Practitioner_Name__r.FirstName + Practitioner_Name__r.LastName

Thanks,
Vinoth
This was selected as the best answer
jyothsna reddy 5jyothsna reddy 5
Hi Siva,
In contact object ,Name is a formula field and it is readonly. if you want to access name field go with FirstName or LastName in a formula editor.
Please check it once 
Regards
Jyothsna

 
VSK98VSK98
Thanks to Vinoth & Jyothsna