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: 
qlikviewforum
Creator II
Creator II

Weekly growth in usage

Hi All,

I want to find the growth in Space from previous week to current week. Data is something like below. Can someone help me to create a chart for the same? Please help ASAP

ENVTotal SpaceUsed SpaceFree SpaceDate
DEV50321803-11-2013
UAT5045503-11-2013
PRD50232703-11-2013
DEV50212927-11-2013
UAT5045527-11-2013
PRD50321827-11-2013
Labels (1)
4 Replies
qlikviewforum
Creator II
Creator II
Author

Any update on this?

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

See attached example.


talk is cheap, supply exceeds demand
qlikviewforum
Creator II
Creator II
Author

I think you didn't attach it. Can you please attach it?

qlikviewforum
Creator II
Creator II
Author

Variance Expression : (Sum(Qty) - before(Sum(Qty)))
Var% Expression: (Sum(Qty) - before(Sum(Qty)))/before(Sum(Qty))
----------------------
sum(Sales)/above(sum(Sales))-1
------------------------
(Sum({$<YEAR={$(=Max(YEAR(TranDate)))},MONTH={$(=Max(Month(TranDate)))}>}
Qty) /
Sum({$<YEAR={$(=Max(YEAR(TranDate))-1)},MONTH={$(=Max(MONTH(TranDate))-1)}>}
Qty))*100-100
----------------------
Growth_Percent = (Growth - above(Growth)) / above(Growth)
----------------------
Sum({$<Year={$(=Max(Year))}>} sales)
Sum({$<Year={$(=Max(Year)-1)}>} sales)