- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
We're getting a new ERP and as a result are getting all new part numbers so i have to go through Content Center and replace all the existing PN's with new ones, fun!
Anyhow, I can loop through the whole thing via ilogic but when i get to replacing the PN's it works with small families, but when there's nearly 800 members, it's sucking up all my system resources. I have 32GB and it's taking that and 62GB of pagefile which errors the process out from taking up all the HD space via pagefile.
Is there anything that can be done to limit the resources this will take? Or will it have to be done family by family the hard way? (and by hardway, doing a vlookup table in excel and pasting it back in) (5 minutes per family or so)
oldPN = oRow.Item("PARTNUMBER").Value
excelRow = GoExcel.FindRow(oFullName, "Sheet1", "Part Number", "=", oldPN)
If excelRow = -1 Then
'do nothing
Else
oRow.Item("Part Number").Value = GoExcel.CellValue(oFullName, "Sheet1", "E" & excelRow)
End If
Solved! Go to Solution.