Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how to do sum of a field depending on period_key and product_key group by....in expression of qlikview??
In a chart you use period_key and product_key as dimensions and sum(field) as expression.
In the script you can do something like:
load
period_key,
product_key,
sum(field) as PeriodProductSum
from ...somewhere...
group by period_key, product_key;
no I dont want period_key and product_key as dimension,
I only want the sum(actual_receipts_qty) against fiscal_year and fiscal_month and product_code.
I have tried your script but it is giving error at load..
I am new, Plz tell me step by step
Please read these two documents: