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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

exclusion help

Hi Experts,

i have a table in my qv document which has a field called 'Location code'

the values of Location Code will be like below:

1. 0010

2. 0024

3. 0035

4. 0050

5. PR10

6. OP35

7. IT14, etc..

out of these values, i want to exclude the alphanumeric location codes i.e.,

5. PR10

6. OP35

7. IT14

How can i do this. Please help.

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Data:

Load

  *

Inline

[

  NO, Location Code

  1, 0010

  2, 0024

  3, 0035

  4, 0050

  5, PR10

  6, OP35

  7, IT14

] Where IsNum([Location Code]);

View solution in original post

2 Replies
MK_QSL
MVP
MVP

Data:

Load

  *

Inline

[

  NO, Location Code

  1, 0010

  2, 0024

  3, 0035

  4, 0050

  5, PR10

  6, OP35

  7, IT14

] Where IsNum([Location Code]);

Not applicable
Author

thank you so much