You need to sign in to do that
Don't have an account?

Copy picklist value in a formula field for dynamic reports
I am trying to capture picklist field value in a formula of return type checkbox for reports
if the picklist value = the user then it should give true otherwise false
for ex:if the field was a lookup then I would write my formula as IF(lookup field name = $User.Id , True , False)
How should I implement the same for picklist ?
if the picklist value = the user then it should give true otherwise false
for ex:if the field was a lookup then I would write my formula as IF(lookup field name = $User.Id , True , False)
How should I implement the same for picklist ?
Try using
The IF statement is not necessary since the condition of the IF statement already returns true or false.
Hope that helps