Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

null values in Set analysis

Hello all,

I have the following expression I am using in straight table.

=Count

({$<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntMissingFlag = {'Yes'}>

+

<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntRenewalStatus2 = {'Not Renewed'}>}

DISTINCT Asset_Id)

It basically has two conditions each. I want those units which dont have contract or which have expired contract. Hence I am using '+' sign.

Now I want to add another condition which looks at contract status and excludes 'Active' or 'Inactive'. So, I am making my expression like below:

=Count

({$<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntMissingFlag = {'Yes'}, EntStatus = {'*'} - {'Active','Inactive'}>

+

<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntRenewalStatus2 = {'Not Renewed'}, EntStatus = {'*'} - {'Active','Inactive'}>}

DISTINCT Asset_Id)

But by doing so it also excludes null values. I want to include null values and exclude just 'Active' and 'Inactive'.

Please help me.

Thank you

Parth

1 Solution

Accepted Solutions
sunny_talwar

How about giving this a show:

=Count

({$<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntMissingFlag = {'Yes'}, Asset_Id = {"=If(Match(EntStatus, 'Active', 'Inactive'), 0, 1) = 1"}>

+

<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntRenewalStatus2 = {'Not Renewed'}, Asset_Id = {"=If(Match(EntStatus, 'Active', 'Inactive'), 0, 1) = 1"}>}

DISTINCT Asset_Id)

View solution in original post

6 Replies
sunny_talwar

How about giving this a show:

=Count

({$<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntMissingFlag = {'Yes'}, Asset_Id = {"=If(Match(EntStatus, 'Active', 'Inactive'), 0, 1) = 1"}>

+

<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntRenewalStatus2 = {'Not Renewed'}, Asset_Id = {"=If(Match(EntStatus, 'Active', 'Inactive'), 0, 1) = 1"}>}

DISTINCT Asset_Id)

Not applicable
Author

Hi Sunny,

Thanks for your response. Still no luck.

-Parth

sunny_talwar

How about this:

=Count

({$<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntMissingFlag = {'Yes'}, Asset_Id = {"=NOT EntStatus LIKE 'Active' and NOT EntStatus LIKE 'Inactive' "}>

+

<Asset_UnitType = {'*'} - {'RMA','SA Demo Unit','Internal Use'}, EntRenewalStatus2 = {'Not Renewed'}, Asset_Id = {"=NOT EntStatus LIKE 'Active' and NOT EntStatus LIKE 'Inactive' "}>}

DISTINCT Asset_Id)

Not applicable
Author

Still the same result. Appreciate your help.

-Parth

sunny_talwar

Would it be possible to share a sample?

Not applicable
Author

Hi Sunny,

Apologies for not getting back. Actually, I was testing the result. Both of the above answers worked. I was measuring a wrong expression before.

Again apologies for not testing the result thoroughly.

Again tank you very much for your help.

Best

Parth