Skip to main content
I have created a checkbox that should be marked true if the record created in the community is created by the logged in user.

 

Here is the formula:

 

IF( CreatedBy.Id = $User.Id, TRUE, FALSE)

 

It works if the record is created from within Salesforce but not from within the community and the community is the only place these records will be created.

 

Any ideas about how to fix this?
2 answers
  1. Apr 10, 2020, 7:53 PM

    If you create a Formula(Text) field on the record and insert 

    CreatedById

    What does the field display when you view the record? 

     

    PS.  Checkbox fields are boolean, so you can just use 

    CreatedById = $User.Id

     

     
0/9000