Hi,
I have recently started using alteryx and am trying to automate an export to be in desired format. Currently I have to do a lot of formatting changes to get the desired format. Problem is that all the data for a record comes in a single row. I have attached the input and desired output.
Can you please provide some guidance as to how I can proceed to get the desired solution.
Thanks in advance.
Solved! Go to Solution.
If you have a unique way to identify if the string is a vendor or supplier or warehouse, then please try the below workflow. Please change the formula for Data in formula tool.
Sorry for confusion, in the fixed values, If I have to rely on the entire string rather than only the beginning letter, could you let me know how to use the formula method.
Thanks
Please use the updated formula:
if [Data] = 'Walmart' or Data = 'Target' or [Data] = 'Ikea' or [Data] = 'Costco' or [Data] = 'Aldi' then [Data]+':Supplier' else (if [Data] = 'Abc' or [Data]='Def' or [Data] = 'Ghi' or [Data] = 'Mno' then [Data]+':Vendor' else [Data]+':Warehouse' endif) endif
If the data is large try using 3 text input and join them instead of using the formula.
Please mark this as solution if you are happy with this approach.
Thanks so much!!!