Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Filter Table based on a fields sub value.

Hi

I have a table which I want to filter the information based on a field it has.

Table1:

field,

field,

field,

Assignee, <--Field I want to filter by but it has 5 different rows, ex. A,B,C... I only want to filter by B.

From

[..\..\02_QVDs\IT\][qvd]; < can I put a where clause here to filter by Assignee but its sub row 'B'?

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

LOAD

*

FROM DataSource.qvd (qvd)

WHERE Assignee = 'B';

If it is not working then attach some sample values.

Regards,

Jagan.

View solution in original post

1 Reply
jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

LOAD

*

FROM DataSource.qvd (qvd)

WHERE Assignee = 'B';

If it is not working then attach some sample values.

Regards,

Jagan.