So someone gave me a spreadsheet of orders, the unique value of each order is the PO, the person that gave me the spreadsheet is lazy and decided for orders with multiple PO
If I had to do it I would
Then, in a VBA routine I would
rstIn for [TempTable] and rstOut for [ActualTable]rstIn recordset.Split() function to split the [PO] values on "/" into an array.For Each array item I would use rstOut.AddNew to write a record into [ActualTable]