Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'm new to Qlikview and I try to create my own analyses for my Retail business (sales, stock, orders, delivery)
I would like to create a view per product where I can see the following:
SKU | Sales Qty | Qty On Hand | Qty Ordered | Qty Delivered |
---|---|---|---|---|
SKU 1 | 10 | 4 | 50 | 14 |
SKU 2 | 15 | 6 | 60 | 21 |
etc. |
I would like to use a filter on the Sales date, so I can get the sum or average Qty Sold on the period I select. However, when I do this, my Qty On Hand, ordered and delivered are all 0 (there is no date in stock table as it's always the current stock).
How should I import and link my facts table (sales, stock, order, delivery) and dimensions tables (Store info, Item info) ?
Thank you
Perhaps a set analysis expression will work. If your have a field named SalesDate and an expression sum(QtyOnHand) for the Qty On Hand amount then you could change it to sum({<SalesDate=>}QtyOnHand) to ignore selections in the SalesDate field.
Perhaps a set analysis expression will work. If your have a field named SalesDate and an expression sum(QtyOnHand) for the Qty On Hand amount then you could change it to sum({<SalesDate=>}QtyOnHand) to ignore selections in the SalesDate field.
Yes, it works fine now, just need to be careful to "disable" all necessary dimensions
Thank you
What should be the correct syntax if I don't want to apply the selection based on the value of this selection:
sum({<SalesDate=2012>}QtyOnHand) seems not to work (nothing is displayed in the chart)
Thank you
If you want to fix the selection for SalesDate to the value 2012 use this: sum({<SalesDate={2012}>}QtyOnHand)