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
palala varmapalala varma 

how to Create a Formula field and retrun type Checkbox, it should be selected when logged in user is Owner. Field Name: Is Owner Me?

Maharajan CMaharajan C
Hi Palala,

Try the below formula:

if($User.Id == OwnerId ,true,false)

Can you please Let me know if it helps or not!!!

If it helps don't forget to mark this as a best answer!!!


Thanks,
Maharajan.C
palala varmapalala varma
thanks a lot for your response , can you please check blow and guide me for formula for multi pick list. IF(OR(ISPICKVAL( Subjects__c),'English_marks__c'
Varma PSVarma PS
thanks a lot for your response , can you please check blow and guide me for formula for multi pick list.
 
IF(OR(ISPICKVAL( Subjects__c),'English_marks__c'<= 35),ISPICKVAL(Subjects__c),'Hindi_marks__c' <= 35),ISPICKVAL( (Subjects__c),'Maths_marks__c'<= 35)),'pass','fail')
 
Maharajan CMaharajan C
can you please post your multipicklist screenshot and explain your requirement as some more briefly.
gaurav gupta 253gaurav gupta 253
try this one IF( $User.Username = Owner.Username , true, false)
gaurav gupta 253gaurav gupta 253
try this one OR(IF(INCLUDES(Scores__c, 'English') ,  English__c <35,false),IF(INCLUDES(Scores__c, 'Hindi'),Hindi__c <35,false))