Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.

Alteryx Designer Desktop Discussions

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

How to take only unique name in a column

Pandey19
8 - Asteroid

I've my input like below

 

NameSub
R-10abc
R-10def
R-10fg
R-10sd
R-10q332
R-10 Total 
R-20fsrw4
R-20we3
R-20ht
R-20 Total

 

 

And i wanted something like below where one unique Name will appear only in first row and rest should be blank.

 

NameSub
R-10abc
 def
 fg
 sd
 q332
R-10 Total 
R-20fsrw4
 we3
 ht
R-20 Total 
2 REPLIES 2
atcodedog05
22 - Nova
22 - Nova

Hi @Pandey19 

 

Here is how you can do it with help of multi-row formula tool.

Workflow:

atcodedog05_0-1632229299048.png

 

Hope this helps : )

Christina_H
14 - Magnetar

Use a multi-row formula tool to create a new field:

 

if [Name]=[Row-1:Name] then "" else [Name] endif

Labels