Is it possible to create a formula that says if th...
# general
l
Is it possible to create a formula that says if the current user running the saved search is the same as the Next Approver OR the Delegate Approver in the PO, then show it as part of results? Without using the Use Expressions box which prevents showing the number of results in the Reminders portlet. I tried something like this but it's throwing an error. CASE WHEN {nextapprover} = {user.entityid} OR {custbody_delegate} = {user.entityid} THEN 1 ELSE 0 END
j
Try ”me” instead of ”user.entityid”
And use ”then ’1’ else ’0’ end” equals to 1 without ’’
l
Thank you but unfortunately it isn't working