We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

I want to create pivot table which gives group wise view and sub totals

Kaish
8 - Asteroid

data :

   ID           Region         Amount              Bucket               Type

   10           EMEA          1100                  >100                  External

   23           EMEA            21                     <25                   Internal

   12           ASIA              35                     25-50                 External

   32            NY                95                     50-100               External

   45            NY               102                    >100                  Internal

   50            NY                15                      <25                    External

   14           ASIA              40                     25-50                  External

 

 

Output in Alteryx:

 

Region        Type            Value     <25          25-50            50-100          >100          Total

ASIA         External            #            0               2                    0                   0               2

                                          $            0              75                   0                   0              75

NY            External            #            1               0                    1                   0               2

                                          $            15             0                   95                  0             110

                 Internal             #             0              0                    0                   1               1

                                          $             0              0                    0                  102           102

EMEA       External            #             0              0                    0                    1               1

                                          $             0              0                    0                  1100         1100 

                 Internal             #             1              0                    0                     0               1

                                          $            21             0                    0                     0               21

 

 

 

Here, if you look at the output, the output contains group by values of the input and it's segregated by internal and external values with the "Value" column displaying # sign for the total values and $ sign for the sum. Can anyone help me with the tools and methods required because this is achieved in Excel for the Value column it is achieved from value settings in Pivot table of excel by giving custom names as # and $. Kindly help me with the result I am stuck.   

2 REPLIES 2
Bobbyt23
13 - Pulsar

Have a look at the attached, does that give you what you need?

 

image.png

 

You can ignore the first few bits, that was me sorting the data I inserted manually.

Kaish
8 - Asteroid

Thanks @Bobbyt23 worked for me like water. Thanks a lot man 

Labels
Top Solution Authors