Alteryx Designer Desktop Discussions

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

Without using Multi row formula

SHRAO_SURYA
6 - Meteoroid

Can we achieve without using Multirow formula

6 REPLIES 6
OllieClarke
15 - Aurora
15 - Aurora

@SHRAO_SURYA Why can't you use a multi-row formula? 

If ISNULL([Year]) THEN [row-1:year] ELSE [Year] ENDIF

Is by far the simplest way to clean this data. There may be other approaches, but they will be much much much more complicated

 

Ollie 

SHRAO_SURYA
6 - Meteoroid

Now I am working on Alteryx cloud there is no Multirow Formula but i need same output can you please help on this

Pang_Hee_Choy
12 - Quasar

surprise that alteryx cloud do not have multi-row formula tool.

 

here the long way I tried. mainly use summary + text to column + replace.

 

first have to use formula tool to convert null to "+" (or other symbol) for add in summarize tool.

then to avoid the complexity in the formula tool add "|" to ensure first 4 digit is year.

Screenshot 2024-01-16 181028.png

 

merge to 1 rows without separator. 

Screenshot 2024-01-16 182033.png

use text to column to split by "|" to year in rows.

79a8df88-cf59-4611-8c06-ae9bf22d6c49.png

use formula to replace the "+" to year, and add separator.

 

replace([Concat_year],"+",","+left([Concat_year],4))

 

Screenshot 2024-01-16 181047.png

 

use text to column to split to rows. 

Screenshot 2024-01-16 181051.png

lastly use join by recordID

Screenshot 2024-01-16 181055.png

workflow:

fda1e94c-7ca9-4905-a098-18bfd233a7b1.png

 

btw, I not sure it works when AMD engine is on. please check it first.

 

Peachyco
11 - Bolide

This is pretty convoluted, purposefully working around the Multi-Row Formula Tool. Challenging. 😊

 

Here's my take, using Row IDs. Appends, and grouping by 12 (using ceiling and division).

 

Alteryx screenshot.png

 

 

SHRAO_SURYA
6 - Meteoroid

Hi  Pang_Hee_Choy

I would like to express my sincerest gratitude to you for generously investing your time and expertise in resolving the issue

Thank you, for your unwavering dedication and commitment to excellence.

Its working as expected

SHRAO_SURYA
6 - Meteoroid

Hi Peachyco

I would like to express my sincerest gratitude to you for generously investing your time and expertise in resolving the issue

Thank you, for your unwavering dedication and commitment to excellence.

It's working as expected

Labels