Start Free Trial

Alteryx Designer Desktop Discussions

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

Grouping values like pivot in excel.

Kaish
8 - Asteroid

Hi All, I have a requirement where I have a set of data and the output I want has to be grouped, let me show an example.

 

Data:

Region       Type             Value       Total 

NA            External           #               5

NA            External           $             200

EMEA       External           #               4

EMEA       External           $             350

EMEA       Internal            #              6

EMEA       Internal            $             500

ASIA         Internal            #               2

ASIA         Internal            $             200

 

 

Output:

Region       Type             Value       Total 

NA            External           #               5

                                         $             200

EMEA       External           #               4

                                         $             350 

                 Internal            #              6

                                         $             500

ASIA         Internal            #               2

                                         $             200

 

Here, the data which comes under the same category are not visible for better view, the data comes under the same category. How can this be achieved ? 

2 REPLIES 2
niklas_greilinger
11 - Bolide

Hi @Kaish ,

is this suitable for your problem? I am using 2 multi row formula tools to identify if the content is needed or can be made Null().
Screenshot 2025-01-14 140648.png

alexnajm
18 - Pollux
18 - Pollux

Easiest way is to just clear the data from Region and Type when Value="$", but it looks like @niklas_greilinger 's solution is much more thought out!

Labels
Top Solution Authors