Conditional Logic for Parameters in Title

Hi, QuickSight Community. Where can I find the documentation on how to customize the display value for parameters based on a condition? In the example (below), I would like to say IF ${organizationCode} equals ‘All’ then ‘xxx’ ELSE ${organizationCode}

image

Not sure about the documentation. But I’ve implemented it like this -

ifelse(trim(tolower(${SupervisorID})) = ‘anika’ , ‘abc’ , ${SupervisorID})

2 Likes