Hello
I am trying to create visual of movement of files across directories. The files are moved from one directory to another as they are worked on. My workflow is giving the following output
| FileName | Folder_1 | Folder_2 | Folder_3 | Todays date |
| file 1.pdf | 3/14/2024 16:08 | | | 3/14/2024 |
| file 1.pdf | | 3/15/2024 12:09 | | 3/15/2024 |
| file 1.pdf | | 3/15/2024 12:09 | | 3/15/2024 |
| file 1.pdf | | | 3/18/2024 8:38 | 3/18/2024 |
| file 2.pdf | | 3/14/2024 16:00 | | 3/14/2024 |
| file 2.pdf | | | 3/15/2024 12:01 | 3/15/2024 |
| file 2.pdf | | | 3/15/2024 12:01 | 3/15/2024 |
| file 2.pdf | | | 3/15/2024 12:01 | 3/18/2024 |
My desired out put is
| FileName | Folder_1 | Folder_2 | Folder_3 | Todays date |
| file 1.pdf | 3/14/2024 16:08 | 3/15/2024 12:09 | 3/18/2024 8:38 | 3/18/2024 |
| file 2.pdf | | 3/14/2024 16:00 | 3/15/2024 12:01 | 3/18/2024 |
Is this possible? Thanks in advance