Sub BOMINSERT_HEADERS()
Dim OutPL As Worksheet
Dim Startrow As Variant
Dim SText As String
' ThisWorkbook.Activate
' **********************************
Application.ScreenUpdating = False
Sheets("BOM_INSERT").Activate
UnProtectShts
SText = Cells(2, "B").Value
Set OutPL = Sheets("BOM")
OutPL.Cells(6, "C") = SText
OutPL.Cells(7, "C") = SText
OutPL.Cells(18, "C").Value = SText
OutPL.Cells(4, "C") = SText
Sheets("BOM").Activate
'The following 3 lines are not reliable. In Excel VBA, using WorksheetFunction spaces, "" gets confused with the backwards slash bar, "\".
' Cells(4, "C") = Right(Cells(4, "C"), (Len(Cells(4, "C")) - WorksheetFunction.Find("\", Cells(4, "C"), 1)))
'Cells(4, "C") = Right(Cells(4, "C"), (Len(Cells(4, "C")) - WorksheetFunction.Find("\", Cells(4, "C"), 1)))
'Cells(4, "C") = Left(Cells(4, "C"), (Len(Cells(4, "C")) - WorksheetFunction.Find("\", Cells(4, "C"), 1)))
Cells(18, "C") = WorksheetFunction.Substitute(Cells(18, "C"), "\", "|", 4)
Cells(18, "C") = Left(Cells(18, "C"), InStr(1, Cells(18, "C"), "|"))
If InStr(1, Cells(18, "C").Value, "|") > 0 Then
arr = Split(Cells(18, "C").Value, "|")
Cells(18, "C").Value = arr(0)
End If
Cells(6, "C") = WorksheetFunction.Substitute(Cells(6, "C"), "\", "|", 3)
If InStr(1, Cells(6, "C").Value, "|") > 0 Then
arr = Split(Cells(6, "C").Value, "|")
Cells(8, "C").Value = arr(1)
End If
Cells(7, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 3)
'Cells(6, "C") = Right(Cells(6, "C"), InStr(1, Cells(6, "C"), "|") - 1)
Cells(7, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 4)
'Cells(8, "C").Value =
If InStr(1, Cells(7, "C").Value, "|") > 0 Then
arr = Split(Cells(7, "C").Value, "|")
Cells(7, "C").Value = arr(1)
End If
Cells(8, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 2)
If InStr(1, Cells(8, "C").Value, "|") > 0 Then
arr = Split(Cells(8, "C").Value, "|")
Cells(8, "C").Value = arr(1)
End If
Cells(8, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 1)
If InStr(1, Cells(8, "C").Value, "|") > 0 Then
arr = Split(Cells(8, "C").Value, "|")
Cells(9, "C").Value = arr(1)
End If
Cells(7, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 1)
'Cells(8, "C").Value =
If InStr(1, Cells(7, "C").Value, "|") > 0 Then
arr = Split(Cells(7, "C").Value, "|")
Cells(7, "C").Value = arr(0)
End If
Cells(8, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 1)
'Cells(8, "C").Value =
If InStr(1, Cells(7, "C").Value, "|") > 0 Then
arr = Split(Cells(7, "C").Value, "|")
Cells(8, "C").Value = arr(1)
End If
Cells(6, "C") = WorksheetFunction.Substitute(Cells(7, "C"), " ", "|", 1)
If InStr(1, Cells(6, "C").Value, "|") > 0 Then
arr = Split(Cells(6, "C").Value, "|")
Cells(6, "C").Value = arr(0)
End If
If InStr(1, Cells(8, "C").Value, "-") > 0 Then
Cells(8, "C") = (WorksheetFunction.Substitute(Cells(8, "C"), "-", "|", 1))
arr = Split(Cells(8, "C").Value, "|")
Cells(8, "C").Value = arr(1)
Cells(8, "C") = Right(Cells(8, "C"), (Len(Cells(8, "C")) - WorksheetFunction.Find(" ", Cells(8, "C"), 1)))
If InStr(1, Cells(8, "C").Value, " ") > 0 Then
Cells(8, "C") = Left(Cells(8, "C"), (Len(Cells(8, "C")) - WorksheetFunction.Find(" ", Cells(8, "C"), 1)))
End If
Else
Cells(8, "C").Value = ""
End If
If InStr(1, Cells(7, "C").Value, " ") > 0 Then
Cells(7, "C") = (WorksheetFunction.Substitute(Cells(7, "C"), " ", "|", 1))
arr = Split(Cells(7, "C").Value, "|")
Cells(7, "C").Value = arr(1)
End If
If InStr(1, Cells(7, "C").Value, "-") > 0 Then
Cells(7, "C") = (WorksheetFunction.Substitute(Cells(7, "C"), "-", "|", 1))
arr = Split(Cells(7, "C").Value, "|")
Cells(7, "C").Value = arr(0)
End If
End If
End With
With ThisWorkbook.Sheets("BOM")
Cells(1, 1).Select
End With
Set FSO = Nothing
Set fs = Nothing
End Sub
Thanks for everyone's help.
Bookmarks