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: 
dnowebdn
Contributor
Contributor

combine

I have to combine all into one chart

1 Solution

Accepted Solutions
agigliotti
MVP
MVP

You can do it with a new table as below:

tab_a:

load

     Category

     Category as New_Category

Resident now;

concatenate

load

     Category,

     'all' as New_Category

Resident now;


In the UI you can use New_Category field as filter/dimension.


I hope it helps.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it

View solution in original post

3 Replies
sunny_talwar
MVP
MVP

May be this

Table:

LOAD Sales,

    Month,

    Year,

    Category,

    KPI,

    Country,

    brace

FROM

[..\..\Downloads\Tests.xlsx]

(ooxml, embedded labels, table is Sheet1);


Concatenate (Table)

LOAD Sales,

    Month,

    Year,

    'All' as Category,

    KPI,

    Country,

    brace

Resident Table;

or this

Table:

LOAD Sales,

    Month,

    Year,

    Category,

    KPI,

    Country,

    brace

FROM

[..\..\Downloads\Tests.xlsx]

(ooxml, embedded labels, table is Sheet1);


Concatenate (Table)

LOAD DISTINCT Sales,

    Month,

    Year,

    'All' as Category,

    KPI,

    Country,

    brace

Resident Table;

Anonymous
Not applicable

If you were to create this additional category then there would be no data for it, why do you want to create a third category instead of just selecting two categories simultaneously?

agigliotti
MVP
MVP

You can do it with a new table as below:

tab_a:

load

     Category

     Category as New_Category

Resident now;

concatenate

load

     Category,

     'all' as New_Category

Resident now;


In the UI you can use New_Category field as filter/dimension.


I hope it helps.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it