I want to display the value of the parameter in the title of the visual.
I tried the following formula, but it doesn’t work.
・If the year parameter is “Select all”, return NULL, otherwise return the year.
ifelse(isNull(${year1}),NULL,${year1})
Result: If the year parameter is “Select all”(NULL), “ALL” is displayed in the title.
It seems that the isNull(${year1})
part is not handled correctly.
In Insight, the above formula worked well, but when I implemented it in the visual title, I couldn’t do it.
Is NULL not set when all parameters are selected?
Please advice how to hide parameter value when parameter is “Select all”