Hi all,
I explicitly configured my Multi-value Parameter with Set reserved value = Custom value: ‘ALL’.
The Issue: When I choose “Select All” in the control, it looks like QuickSight is passing NULL instead of the string 'ALL', ignoring my configuration.
I tested both scenarios in my Calculated Field:
-
ifelse(in('ALL', ${pCategory}), ...)→ Returns FALSE (Unexpected, since I set it to ‘ALL’). -
ifelse(in(NULL, ${pCategory}), ...)→ Returns TRUE (Works!).
My Question: Why is QuickSight ignoring my “Custom Reserved Value” setting and passing NULL instead? Has anyone faced this behavior?

