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: 
gauravgg
Partner - Creator
Partner - Creator

Make data date wise

Hi

I have the following table

Budget:

load * inline

[

Plant,Month ,Value,Year

P1,Jan,100,2016

P1,Feb,100,2016

P1,Mar,100,2016

P1,Apr,100,2016

P1,May,100,2016

P1,Jun,100,2016

P1,Jul,100,2016

P1,Aug,100,2016

P1,Sep,100,2016

P1,Oct,100,2016

P1,Nov,100,2016

P1,Dec,100,2016

];

the above budget table by month

I want to make it day wise data i.e i have sum up the Value and divide by 365 (sum(Value)/365) and group  by Plant

1 Reply
vinieme12
Champion III
Champion III

LOAD Plant,

     Year

     Sum(Value)/365 as DailyAverage

From XXXx

Group by Plant,Year;

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.