Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
balaji_m
Partner - Contributor III
Partner - Contributor III

QlikSense - Pie Chart without Dimension

HI Team,

I Need to create a Pie chart without dimension.

Exp = Sum(A)+sum(B)+sum(C)+Sum(D)

Pie.PNG

2 Replies
luismadriz
Specialist
Specialist

Dimension

=ValueList('A','B','C','D')

Measure

=If(ValueList('A','B','C','D')='A',Sum(A),

If(ValueList('A','B','C','D')='B',Sum(B),

If(ValueList('A','B','C','D')='C',Sum(C),

If(ValueList('A','B','C','D')='D',Sum(D)))))

Untitled.png

I hope this helps,

Cheers,

Luis

Aspiring_Developer
Creator III
Creator III

@luismadriz 

 

Hello, i was looking for a something like this. Glad i came to this post.

Heads Up. It worked.

Many Thanks