SOLVED
data summarize
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
TonyMu
8 - Asteroid
‎10-22-2020
05:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello,
I have an input data as folow:
A | 1 |
B | 3 |
B | 5 |
A | 2 |
C | 1 |
B | 3 |
A | 2 |
A | 1 |
B | 2 |
C | 3 |
I want to summorize it as follow:
A | 6 |
B | 13 |
C | 4 |
How do I do this in Alteryx?
Regards,
Tony
Solved! Go to Solution.
Labels:
- Labels:
- Preparation
4 REPLIES 4
15 - Aurora
‎10-22-2020
06:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hey @TonyMu like the name suggests, the Summarize tool can do this for you. Set it up as below (grouping by the ABC, and summing the numbers)
Hope that helps, Ollie
‎10-22-2020
06:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Great, thanks for your very fast reply 🙂
Is there anyway for summerizing as bellow as well?
from this:
A | 1 | Null | Null |
B | Null | 2 | Null |
A | Null | Null | 4 |
B | Null | Null | 3 |
B | 1 | Null | Null |
A | Null | 2 | Null |
to this:
A | 1 | 2 | 4 |
B | 1 | 2 | 3 |
thanks in advance,
Tony
17 - Castor
‎10-22-2020
06:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
17 - Castor
‎10-22-2020
08:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
