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
GraciaGracia 

Hi,,I have made one formula field on partner fund request name xyz. I want to make it true when community user account Id = Partner account which is the account lookup onn partner fund request

I have made it like that---always its showing false only...

if(($User.AccountId__c =PartnerAccount__r.Id), True, False)

I have tried with == also even then its not working correctly.
Kindly let me know where is the error???????????/
VinayVinay (Salesforce Developers) 
Hi Gracia,

Try below
If(($User.AccountId__c ==PartnerAccount__r.Id), 'true', 'false')

Thanks,
GraciaGracia
No it's not working