Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
panipat1990
Creator II
Creator II

Help

Hi Team,

I am stuck in one requirement which is not able to implement by me. I need your help here.

my requirement is :-

we have four fields in our spreadsheet:-

1. Division

2. Year

3. Revenue

4. Category

in Division field , we have 4 values(CORP,ESM,SAS,ESC) And Year value is {2014,2015 and 2016} with revenue amount is given.

But For "ESM Division" , we are not getting the "2016" year and revenue value data from spreadsheet data. And i want to show the revenue amount for "ESM Division" for 2016 year in qlikview which is the cumulative Revenue value of 2015 and 2014.

And when i select ESM Division as selection filter, then In Bar Chart ..Three BAR Piece should be shown :- one is for 2014 , 2nd is for 2015 and third is for 2016(which would be the cumulative revenue amount of 2014 and 2015 year).

Also i have attached the spreadsheet for the same data.

please check and help me over this.

Thanks

Gourav

9 Replies
trdandamudi
Master II
Master II

May be as attached:

Data:

LOAD Year,

     Division,

     Revenue,

     Category

FROM

(ooxml, embedded labels, table is Sheet1);

Join

Load

'2016' as Year,

'ESM' as Division,

'I&B' as Category,

Sum(Revenue) as Revenue

Resident Data

Where Division = 'ESM';

panipat1990
Creator II
Creator II
Author

Hi

This  is  static  code . Can  you  tell  me  how  tto  make  it  dynamic

vinieme12
Champion III
Champion III

Hi Gourav,

Please see attached QVW , hopefully this helps you.

TAB_MAX_YEAR:

LOAD max(Year) as MAXYEAR

FROM

(ooxml, embedded labels, table is Sheet1);

Let vMaxYear = NUM(Peek('MAXYEAR',0,'TAB_MAX_YEAR'));

LOAD Year,

     Division,

     Category,

     Revenue

    

FROM

(ooxml, embedded labels, table is Sheet1)

Where Year < $(vMaxYear);

CONCATENATE

LOAD $(vMaxYear) as Year,

     Division,

     Category,

     SUM(Revenue) as Revenue

FROM

(ooxml, embedded labels, table is Sheet1)

Where Year < $(vMaxYear)

Group By 

     Division,

     Category;

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

May be like this -

Capture.JPG

panipat1990
Creator II
Creator II
Author

Hi Sir,

Suppose in place of revenue we have employee id. and count of employee id for max year show 1..But i want to cumulative count of 2014 and 2015 employee id..how is it possible...kindly help me for solving this requirement.

vinieme12
Champion III
Champion III

I've made my own sample data, hope it helps.

AccumulateEMPCount.JPG

TAB_MAX_YEAR:

LOAD max(Year) as MAXYEAR

FROM

(ooxml, embedded labels, table is Sheet1);

Let vMaxYear = NUM(Peek('MAXYEAR',0,'TAB_MAX_YEAR'));

EMPID_COUNT:

LOAD Distinct EmpID,

  Year,

  Division,

  Category,

  1 as EMPCOUNT

FROM

(ooxml, embedded labels, table is Sheet1)

Where Year < $(vMaxYear);

CONCATENATE

LOAD $(vMaxYear) as Year,

    Division,

    Category,

    SUM(EMPCOUNT) as EMPCOUNT

RESIDENT EMPID_COUNT

Where Year < $(vMaxYear)

Group By

    Division,

    Category;

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

Hi Sir,

This is sum of employee id...But i want to count of employee id..

panipat1990
Creator II
Creator II
Author

In Above Your Example Division corp against employee id in 2016 cumulative count of 2014 or 2015....it should be 21 for corp division.selecting year 2016

vinieme12
Champion III
Champion III

Ok, now i think i know what you need.

Please refer to the original attachment I provided for summarizing revenue and try replicating the same for Emp, the concept is the same.

If you get stuck please post a sample app or data in a new thread.

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