Figured it out! Had a problem with the variables I was suing to make the hyperlink, all done now :D
Sub Product1()
Dim ws As Worksheet, wsTemp As Worksheet
Dim MyCell As Range, MyRange As Range
Dim LRow As Long
Dim hypsh As Worksheet
Set ws = ThisWorkbook.Sheets("Opps")
With ws
LRow = .Range("B" & .Rows.Count).End(xlUp).row
Set MyRange = .Range("B2:B" & LRow)
For Each MyCell In MyRange
If Len(Trim(MyCell.Offset(0, -1).Value)) <> 0 Then
On Error Resume Next
Set wsTemp = ThisWorkbook.Sheets(MyCell.Offset(0, -1).Value & "_Prcs")
On Error GoTo 0
If wsTemp Is Nothing Then
ThisWorkbook.Sheets("Template").Copy After:=ThisWorkbook.Sheets(Sheets.Count)
ThisWorkbook.Sheets(Sheets.Count).Name = MyCell.Offset(0, -1).Value & "_Prcs"
Set hypsh = ActiveSheet
Cells(1, 1).Select
ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _
"Opps!A1", TextToDisplay:="Back To Opps"
Cells(1, 1).Interior.ColorIndex = 8
ws.Select
MyCell.Offset(0, -1).Select
ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _
hypsh.Name & "!A1", TextToDisplay:=MyCell.Offset(0, -1).Value
End If
Set hypsh = Nothing
Set wsTemp = Nothing
End If
Next MyCell
End With
End Sub
Bookmarks