DonnaTroestler
8 years agoQrew Cadet
Formatting a Formula - User field for a report
Newbie here. I have created a User - Formula field called "Who" within my "Activities" table which is for reporting purposes only, where I want to display the User who created the Activity. We imported data from Salesforce, so I need a formula to handle the old data in unison with the new. I want this "Who" field to first look at the [Created By ID] field (data from Salesforce) and use that value if it's there. However, if that field is empty, I want the value that's in [Assign To] to be used. Here's what I came up with, but I'm getting the message "Formula syntax error. The argument list of the function Boolean must begin with a left parenthesis." even though I have left parenthesis. HERE IS THE FORMULATE I ENTERED: If(Boolean [Created By Id], NULL, ..., else-result)[Assign To]