Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

to get missing values in a field within the current selection

Hi,

Is it possible to get missing values in a field within the current selection via the function Concat?

Thank you in advance,

Larisa

1 Solution

Accepted Solutions
maxgro
MVP
MVP

maybe

=concat({1 <Months=E(Months)>} DISTINCT Months, ', ')

View solution in original post

4 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

I am not sure what you mean. But if you mean can you select null and missing values, the answer is no.

But you can convert null values to a selectable value by using NULLASVALUE fieldname;

There is no way to select genuine missing values. What exactly would you select?



Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Anonymous
Not applicable
Author

For instance all months are selected by default. If a user selects Brand A, then Months Jan and Feb are not active because Brand A has no ads in Feb and Apr.

I want to display a short text info for the end user saying that Brand A has no ads in Feb and Apr. Can I get text values Feb and Apr using a concat funcion?

maxgro
MVP
MVP

maybe

=concat({1 <Months=E(Months)>} DISTINCT Months, ', ')

Anonymous
Not applicable
Author

Thank you!