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
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