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: 
Anonymous
Not applicable

IF Statement

Hi,

I am creating a document where I look at the cover of stock in the warehouse. I want to created a figure based on the stock we currently have, plus the stock on the way, divided by the week before sales.

What I am trying to say is If On Order = 0 then Free Stock/Sum, otherwise ([On Order]+Free_stock)/Sum (if (InWeek (SI_Date, Today(), -1), [Quantity])) .

Any help is much appreciated.

Regards

David

Labels (1)
6 Replies
avinashelite
MVP
MVP

share the mock up data ..will help you

Anil_Babu_Samineni
MVP
MVP

May be this?

If([On Order] = 0, [Free Stock]/Sum, ([On Order]/Free_stock)/Sum(If(InWeek(SI_Date, Today(), -1), Quantity)))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
its_anandrjs
Champion III
Champion III

Can you share any sample data or what is mean by On Order = 0 kindly elaborate.

Anonymous
Not applicable
Author

My formula looks like this..

([on Order]+[Free_stock])/Sum (if (InWeek (SI_Date, Today(), -1), [Quantity]))

So, for instance in the attached screenshot, 6712 in stock + 5520 on order, LW sales were 1776 meaning total cover of 6.9 (6.88 without rounding)img.png

Anil_Babu_Samineni
MVP
MVP

Perhaps this?

Round((Stock+[On Order])/LW, 0.01)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
its_anandrjs
Champion III
Champion III

You need 6.88 or 6.9