Hi everyone,
I am trying to fill the empty values for the entire row (for all columns) which are having nulls with the previous row without using multiple multi row formula tools. Can anyone please help me in this . Thanks in Advance.
My data is like this:
Name | id | application | date |
John | 2 | Alteryx | 6/20/2021 |
Bob | |||
Pip | 3 | Alteryx |
|
required output:
Name | id | application | date |
John | 2 | Alteryx | 6/20/2021 |
Bob | 2 | Alteryx | 6/20/2021 |
Pip | 3 | Alteryx | 6/20/2021 |
Hi @Pravallika20 ,
Multi-Row Formula tool should do the job. I've attached a sample workflow.
Let me know if it works for you.
Best,
Roland
Hi @Pravallika20 ,
Yes you can achieve that by first bringing your data in a long format so you have all columns with values into a single column. Then you can apply a single multi-row formula tool and then transpose your data back to its original structure. Record ID tool and a sort tool help you preserve the order that the fields appear
Hope that helps,
Angelos
Any updates on this @Pravallika20 ?