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 |