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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

selection of certain data

Hi everybody,

I have one field:

age   ...    ...    ...

4       ...    ...    ...

5       ...    ...    ...

6       ...    ...    ...

I would like to create a chart where to show only data of age:'4'

I know that i can filter for age, but my objective is to create this chart only with data related to age 4

Thank you

3 Replies
tomasz_tru
Specialist
Specialist

You can use Set Analysis to calculate on data subset with only age of 4.

Tomasz

tomasz_tru
Specialist
Specialist

For example:

Sum({$<age={4}>} YourMeasure)

Chanty4u
MVP
MVP

Hi,

If you need in script side you can write below

age:

load * Inline [

age,marks

1,10

2,20

3,30

4,40

5,50

6,60

]

Where age=4;