Important Community update: The process for changing your account details was updated on June 25th. Learn how this impacts your Community experience and the actions we suggest you take to secure your account here.

Alteryx Designer Desktop Discussions

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

How to Split Up Data at Blank Rows?

abg5424
5 - Atom

I am trying to assign a unique identifier to a group of rows, split up by blank spaces. Below is what I am trying to do:

InputDesired Output
AID1
BID1
CID1
 ID1
DID2
EID2
 ID2
FID3
 ID3

 

Basically, what I was thinking was a while loop - while (current_row is not blank OR (current_row is blank AND following_row is not blank)) then keep same ID, else start using another ID. I tried using the multi-row formula tool, but was wondering if there are other intuitive ways to go about this (either using a macro or Python tool).

 

Thanks!

2 REPLIES 2
MilindG
12 - Quasar

Theres better way to do this I'm sure but see if this works for you

DataNath
17 - Castor

@abg5424 you're right to be thinking in terms of a Multi-Row Formula. Definitely the most intuitive way of doing this in Alteryx:

 

DataNath_0-1681932800502.png

 

IF ISEMPTY([Row-1:Input]) THEN [Row-1:ID]+1 ELSE [Row-1:ID] ENDIF
Labels