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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
aliyoung92
Contributor III
Contributor III

Qlikview Chart With no Expression

My Data is already in the format I want it, using Excel and SQl scripting.

How do I create a chart expression, that simply reads the existing data without any additional sums etc.

I also want to add some modifiers to this expression,

i.e. =(Data) Where School = School A

Thanks in advance

5 Replies
Anonymous
Not applicable

sum({< School = {'School A'} >} YourValue)

aliyoung92
Contributor III
Contributor III
Author

Thanks, however I don’t want to Sum

The data I have loaded in has already been summed, I simply want to display it, but with an additional filter built into the expression.

Anonymous
Not applicable

if( School = 'School A', YourValue)

alexpanjhc
Specialist
Specialist

What chart you using?

Let's say you use a straight table, you can just create a expression in the definition, just put a random number say 1 and then in presentation, you can hide that column,

Hope it helps.

eduardo_sommer
Partner - Specialist
Partner - Specialist

If you don't want to use the sum function you can use the only function or, use the field in an IF function (it uses an implicit Only function)

=only($<School={'School A'}>} Value)

If, for any reason you have more than one value for School A, the function returns a null value.

Eduardo