Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
timsaddler
Creator III
Creator III

Struggling with Calculation - please help !

Hi all

My calculation for #StockCover produces zero as a result and I don't understand why?

All other calcs work fine.

What am I missing?

StockCoverPreCalc:
LOAD
BusinessUnit,
GLDate,
ShortItemNo,
ItemDesc,
ItemBU3,
Sum(#SalesQty) as #SalesQty,
Sum(#SalesTns) as #SalesTns,
If(GLDate >AddMonths(monthend(today()),-12) and GLDate <=monthend(today(),-0), Sum(#SalesTns/12)) as #AvgeSalesLast12,
If(GLDate >AddMonths(monthend(today()),-12) and GLDate <=monthend(today(),-0), Sum(#SalesTns/12)
/
If(GLDate = today(),Sum(#StockTonnes_PreCalc))) as #StockCover,
Sum(#StockTonnes_PreCalc) as #StockTonnes_PreCalc

Resident StockCoverPreCalc_tmpA

Group by
BusinessUnit,GLDate,ShortItemNo,ItemDesc,ItemBU3


;

Drop table StockCoverPreCalc_tmpA; 

Message was edited by: Tim Saddler Heres a qvw with one product only as this might make it easier to understand the issue

1 Solution

Accepted Solutions
timsaddler
Creator III
Creator III
Author

Hi I have redone the calculation so that GLDate is  in the filter and it now calculates.

This works as Sales are over different GL Dates but Stock is always "Today"

StockCoverPreCalc_tmpA:

LOAD BusinessUnit,
//Date(GLDate) as GLDate,
   ShortItemNo,
ItemDesc,
ItemBU3,
#SalesTns,
#SalesQty

FROM
[SalesforStockApp.qvd]
(
qvd)
Where Match(OrderType,'O1','O3','O6','OU','O7','CO')//Remove Order Type OH
and GLDate >AddMonths(monthend(today()),-12)
and GLDate <=monthend(today(),-0)

View solution in original post

15 Replies
Anonymous
Not applicable

Hi,  Tim,

Can you pls list the "GLDate" column as well?

Because you use "GLDate = today()" as a condition, something should be wrong here.

Zhihong

marcus_sommer

I think today() isn't right as condition and it should look more like:

If(GLDate >AddMonths(monthend(today()),-12) and GLDate <=monthend(today(),-0), Sum(#SalesTns/12)
/
If(GLDate >= monthend(today(), -0),Sum(#StockTonnes_PreCalc))) as #StockCover,

- Marcus

PrashantSangle

Hi,

try something like this,

If(GLDate >AddMonths(monthend(today()),-12) and GLDate <=monthend(today(),-0), Sum(#SalesTns/12))

/

If(GLDate = today(),Sum(#StockTonnes_PreCalc)) as #StockCover,

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
sunny_talwar

May be if non of the suggestions work, provide a small sample to look at

timsaddler
Creator III
Creator III
Author

Sorry this still produces zero

PrashantSangle

Hi,

do you have value for #StockTonnes_PreCalc for today

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
timsaddler
Creator III
Creator III
Author

Have posted qvw now

sunny_talwar

I cannot reload, but I think the issue is related to the numerator. Can you try this:

Sum(If(GLDate >AddMonths(monthend(today()),-12) and GLDate <=monthend(today(),-0), #SalesTns/12))

/If(GLDate = today(),Sum(#StockTonnes_PreCalc)) as #StockCover,

timsaddler
Creator III
Creator III
Author

Yes there is a value