Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Free Trial

Alteryx Designer Desktop Discussions

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

CountIF related problem

arundaka02
8 - Asteroid

Hi everyone

 

In extension to my previous (now solved) post surrounding a skills matrix style data set, I want to perform a COUNTIF related function on the following data set and in particular the 'Skill Score' column:

 

Email address Skill (new column name)Skill Score (new column name)
example1.example1@xyz.comSkill 12
example1.example1@xyz.comSkill 21
example1.example1@xyz.comSkill 33
example1.example1@xyz.comSkill 43
example1.example1@xyz.comSkill 53

example2.example2@xyz.com

Skill 10
example2.example2@xyz.comSkill 23
example2.example2@xyz.comSkill 33
example2.example2@xyz.comSkill 41
example2.example2@xyz.comSkill 50

 

A score of 3 has a higher weight than a 1 or 2, so I want to count the number of each response (0, 1, 2 and 3) as I want to visualise the spread of the respondent's skill level.

 

In Excel I would typically write a COUNTIF formula at the foot of the data set and count the responses .

 

Which is the best way I can do this in Alteryx? I've been playing around with the Summarize tool and the COUNIF does not feature - should I be using the Formula tool?

 

Thanks

KA

4 REPLIES 4
markcurry
12 - Quasar

Hi @arundaka02 , to count the different skill scores for each email address, use the Summarize tool.  Group By Email Address, also Group By Skill Score, and Count Skill Score.  Hopefully that gives you want you're looking for.

Emil_Kos
17 - Castor
17 - Castor

Hi @arundaka02,

 

Not sure what you need but I think this might be something that could give you guidance.

 

If this isn't helpful please provide us with the desired output. 

ImadZidan
12 - Quasar

Hello @arundaka02 ,

 

May be this will also help.

arundaka02
8 - Asteroid

Thanks, @ImadZidan 

 

When I removed email address and grouped by the skill, the count was displaying as expected.

Labels
Top Solution Authors