Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Multi Row expression

AnGi
7 - Meteor

Need help with correct expression: i have an input data file with 2 fields like shown bottom. I want for Field A to have only the first unique value and blank the other same value. Help

Field A     Field B

A               10

A               15
B               8

B                5

B               23

C               6

D                4

D              21

D             14

2 REPLIES 2
ChrisTX
16 - Nebula
16 - Nebula

This formula should work.

 

IF IsEmpty([Row-1:Field A]) THEN [Field B]
ELSE Null()
ENDIF

 

When you select the Group By option, the row before the first row in each group is defined as empty values.

So I just used a formula with "IsEmpty (row - 1)", with the Group By option selected.

 

 

ChrisTX_0-1595587408877.png

 

 

Chris

 

LordNeilLord
15 - Aurora

Hey @AnGi 

 

Do you mean like this?

 

Capture.JPG

Labels
Top Solution Authors