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

aggregation on calculated dimension

Hi everyone,

from the table below :

A

Element A1

Element A2

Element A3

Element A4

Element A5

Element B1

Element B2

Element B3

Element C1

Element C2

Element C3

Element C4

Element D1

Element D2

Element D3

Element D4

Element E1

Element E2

Element E3

i created a first chart using Left(trim(A),Len(trim(A))-1) as a calculated dimension and  Count(A) as expression then  i get  this result

image.jpg

from here i want to create a second chart so i get this result :

5 -> 1 ( 1 element A ),

4 -> 2 ( 2 elements C and D) ,

3 -> 2 ( 2 elements B and E)

i tried aggregation but no results

any idea ?

5 Replies
nagaiank
Specialist III
Specialist III

One way of getting the result using script is attached.

mambi
Creator III
Creator III
Author

thanks for your help

But is there another method ( not in the load script ) to get the same result directly on the chart by using aggregation or  something else ?

Not applicable

Hi , Add new field to your script called B by using: Left(Trim(A),Len(A)-1)

Then create the Calculated dimension: Aggr(Count(A) ,B)

                        Expression: Count(Distinct B)

Please find the attached file for reference.

Anonymous
Not applicable

I don't think this is possible without doing it in the script.  As far as I am aware of you can not do a calculation in the dimension part of the aggr function.

So,

AGGR( Count(A) , Left(trim(A),Len(trim(A))-1) ) would not work.

jagannalla
Partner - Specialist III
Partner - Specialist III

Hi,

Please find attachment.

T:

LOAD Left(trim(A),Len(trim(A))-1) as Dim,A INLINE [

    A   

    Element A1

    Element A2

    Element A3

    Element A4

    Element A5

    Element B1

    Element B2

    Element B3

    Element C1

    Element C2

    Element C3

    Element C4

    Element D1

    Element D2

    Element D3

    Element D4

    Element E1

    Element E2

    Element E3

];

T1:

LOAD Dim,Count(A) as Val Resident T Group By Dim;

- Now add Dimension as Dim and expr as = aggr(NODISTINCT Count(Val),Val)


Hope it helps you!!!!


Thanks,

Jagan