Hi @Sean_Ryan1
- Use Read Range activity → Store it as DtRead
Use Assign activity
DtClone = DtRead.Clone
DtClone -> Variable Type | System.data.DataTable
- use For each row in data Table activity
Inside the For each row in data table activity
- Use Assign activity
OutputString = Path.GetDirectoryName(Currentrow("Column Name").Tostring)
- Use Add data Row activity and pass the Value
{OutputString}

Note : If you need to add more column add it.
Outside the For each row in data table activity
- Use Write Range activity

Regards
Gokul
