Hi Alteryx engineer,
I have some data like this
I Want to concatenate string under C and D section and output like below, how can i implement?
Hi @187 ,
Here is one way of doing this.
Workflow
Multi-Row formula expression
Output =
IF RegEx_Match([Data], "\d+")THEN [Row-1:Output]ELSE [Data]ENDIF
Formula tool expression
IF REGEX_Match([Data], "\d+")THEN [Output] + [Data]ELSE [Output]ENDIF
Output
Hi @Yoshiro_Fujimori
Thanks for the reply, yes this is working for the case, just wondering if the 1 2 3 is not number , and it is string as well, what is the advice?