Hey Folks,
I am very new to the Alteryx, Hoping to get a solution from the experts out here...
I have a columnA in fileA.xlsx , where i have many records in it. I have to cut the data from sheet1 and create two more sheets in a same file...
For Example
Before:
fileA.xlsx and sheet1
columnA
1
2
3
4
Part two
india
us
germany
Part three
asia
europe
africa
Expected Output should be:
sheet1
columnA
1
2
3
4
sheet2
Part two
india
us
germany
sheet3
Part three
asia
europe
africa
Please note that, i have to make this flow as dynamic, always "Part two" and "Part three" will be constant in the data rest all can vary.
Is there any way that i can divide into multiple streams of data by using any methods?
Solved! Go to Solution.
Hi @GouthamVijay,
to do this, you can process in a few steps :
IF StartsWith([ColumnA], 'Part') then [ColumnA]
else null() endif
if isnull([tab name]) then [row-1:tab name]
else [tab name] endif
Don't forget in the output data to set it as overwrite sheet or range, if you set it to overwrite file, it will delete the file and won't write to a new tab!
Hey @messi007 ,
Thanks for the quick response, Could you please attach the Excel file which you used in your program...
Here you go.
If the workflow solve the problem please mark it as accepted solution it will help others.
Regards,