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

move expression into the script

Hi i have a rather complex expression i wish to move into my script.

i have attached the qvw to this message.

the expression i am looking to move is the following

sum({<Bol_ID-={'003'}>} aggr(distinct max({<Bol_ID-={'003'}>} Lagersaldo) *(max({<Bol_ID-={'003'}>} [Vägt Inpris])) ,ArtNr));

your help is greatly appreciated;

bradley,

Labels (1)
1 Reply
Not applicable
Author

Try using another table for the calculation in the script, like this one

MyTable:

LOAD Distinct

          Artikelkat,

          Max(Lagersaldo) * Max([Vägt Inpris]) AS Expr

Resident Article

Where Bol_ID <> '003'

Group By Artikelkat;

Maybe you are looking for Max(Lagersaldo * [Vägt Inpris]), but I am not sure.

JG