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

Qlikview - show all data from excel

Hi all,

i have excel file with two table.

Untitled.png

I write in script code like this

  Data:

CrossTable(Location, Quantity)

LOAD Reason,

    LocA,

    LocB,

  DateM

FROM

(ooxml, embedded labels, table is Table1);

LOAD Location,

    Re as Reason,

    Answer,

    Date

FROM

(ooxml, embedded labels, table is Table2);


And I get table


Untitled1.png


and when select in Reason Total i got empty table

Untitled2.png


The first table is ok when i choose R1,R2... but how to chenge code when press Total in Reason to get all Location and it's data depending on date. Something like this (if choose Reason Total and Date 08-05-17)

Untitled3.png

Any idea?

1 Solution

Accepted Solutions
Kushal_Chawda

try this

Data:

CrossTable(Location,Quantity,2)

LOAD Reason,

     Reason as ReasonFilter,

     DateM as Date,

     LocA,

     LocB

FROM

(ooxml, embedded labels, table is Table1, filters(

Remove(Row, RowCnd(CellValue, 1, StrCnd(contain, 'Total')))

));

Left Join(Data)

LOAD Location,

     Re as Reason,

     Answer,

     Date

FROM

(ooxml, embedded labels, table is Table2);

Concatenate(Data)

LOAD  Reason,

      Location,

      Quantity,

     'Total' as ReasonFilter,

      Date,

      Re,

     Answer

Resident Data;

Use ReasonFilter as Filter


Note:

You need to write distinct key word in expression to show values as here data is getting duplicate


Update: I am correcting the mistake here so that correct answer should look correct.

View solution in original post

13 Replies
prma7799
Master III
Master III

What is your expected output.

Anonymous
Not applicable
Author

The last image, If select Total for date 08-05-17 to get all data (Location,Resaon,Answer...) related to this date.

prma7799
Master III
Master III

PFA...

Anonymous
Not applicable
Author

This is not that. You don't have in  list Reason value Total... I must to have Total and when press Total depending of date table fill with data....

Anonymous
Not applicable
Author

Hello Friend,

Data:

CrossTable(Location, Quantity,3)

  LOAD Reason ,

  DateM,

  Reason &'-'& DateM as KEY,

    LocA,

    LocB

FROM

(ooxml, embedded labels, table is Table1);

LOAD

    Re &'-' & Date as KEY,

    Answer

FROM

(ooxml, embedded labels, table is Table2);

Rest in qvw.

Regards

Jacek.

Anonymous
Not applicable
Author

Thanks, but this is not what i want. When i run your code i got this

Untitled4.png

i want when I choose Total and date to get from second table rows that contains choosen date like in image

Untitled3.png

Anonymous
Not applicable
Author

You can achieve this effect by add next selector:

Total in your table is a prat of column reason.

sample.png

Regards,

Jacek.

Anonymous
Not applicable
Author

I now, but i have task when press Total to show that table...

Kushal_Chawda

try this

Data:

CrossTable(Location,Quantity,2)

LOAD Reason,

     Reason as ReasonFilter,

     DateM as Date,

     LocA,

     LocB

FROM

(ooxml, embedded labels, table is Table1, filters(

Remove(Row, RowCnd(CellValue, 1, StrCnd(contain, 'Total')))

));

Left Join(Data)

LOAD Location,

     Re as Reason,

     Answer,

     Date

FROM

(ooxml, embedded labels, table is Table2);

Concatenate(Data)

LOAD  Reason,

      Location,

      Quantity,

     'Total' as ReasonFilter,

      Date,

      Re,

     Answer

Resident Data;

Use ReasonFilter as Filter


Note:

You need to write distinct key word in expression to show values as here data is getting duplicate


Update: I am correcting the mistake here so that correct answer should look correct.