Free Trial

Alteryx Designer Desktop Discussions

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

Singular Row into a Column

missteran
7 - Meteor

I have somewhat of an odd question but trying to see if alteryx can do this. I have a data set with rows of deal names, followed by the type of deals these are considered. I would like to make that singular row that captures types of deals into a column instead. Please see what i mean below before and after.

Before:

BookDeal NameManagerExposureUtilization
ABCDMelissa DealStuart$100$50
EFGHStephanie DealOwl$100$75
EFGHJohn DealGold$100$75
 Type of Deal: Secured Loan $300$200
YZKWErica DealAres$200$150
POFDKaitlyn DealOak$150$75
POFDJoshua DealApollo$150$75
HWQKFrank DealSilver$200$100
 Type of Deal: Collateral Loan Obligation $700$400

 

After - the Deal type is now a column and no longer a singular row

BookDeal NameManagerDeal typeExposureUtilization
ABCDMelissa DealStuartSecured Loan$100$50
EFGHStephanie DealOwlSecured Loan$100$75
EFGHJohn DealGoldSecured Loan$100$75
YZKWErica DealAresCollateral Loan Obligation$200$150
POFDKaitlyn DealOakCollateral Loan Obligation$150$75
POFDJoshua DealApolloCollateral Loan Obligation$150$75
HWQKFrank DealSilverCollateral Loan Obligation$200$100
3 REPLIES 3
nagakavyasri
12 - Quasar

@missteran One way of doing this:

 

Screenshot 2024-12-27 174749.png

batchu0409
7 - Meteor

I Always choose to Multi row field tool to iterate though other records , Mark as resolved if this resolves your data 

 

1354564 Solution.png

flying008
15 - Aurora

Hi, @missteran 

 

Another way for you:

 

 

 

IIF(IsEmpty([Row-1:Book]) && IsEmpty([Row-1:Manager]), [Row-1:ID] + 1, [Row-1:ID])

 

 

 

 

 

 

 

REGEX_Replace([Deal type], '^.*:\s*', '')

 

or 

Trim(Substring([Deal type],FindString([Deal type], ':') + 1))

 

 

录制_2024_12_28_15_14_05_672.gif

 

Labels
Top Solution Authors