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

Creating a Pie Chart from Straight Table

I would like to create a Pie Chart from some data I prepared in a Straight Table.  However, I would only like to chart a portion of the data.

POs.JPG

I only want to chart the ratio between the values on the PO row.  How can I limit the data in this straight table and turn it into a Pie Chart?  I had to create a calculated Dimension for the Po vs No PO field.

=If(Len([PO]) = 0,'No PO','PO')

23 Replies
cliff_clayman
Creator II
Creator II
Author

That makes all my PO counts 0

sunny_talwar

Cliff -

Would you be able to provide a sample? I think I don't have good understanding of what is needed. Would you be able to provide a sample in the Excel file?

cliff_clayman
Creator II
Creator II
Author

It's really difficult to provide an example.  Couldn't I somehow use the Conditional property and limit the results that way?

cliff_clayman
Creator II
Creator II
Author

This is what I ended up doing for my two expressions:

=Count(DISTINCT If(FY=vFY_Current and Len([PO]) <> 0, [PO]))

=Sum(If(FY=vFY_Current and Len([PO]) <> 0, [Invoice]))

Would set analysis work better here?