There are several workbooks open and I need to programmatically activate one workbook out of the many open.
The problem is that the open workbook’s name is generated by another system and can change with each occurrence except for the last 4 characters which are “FACT”
The Following attempt did not work:
[codebox]Sub GetWorkbook(str As String) As Workbook
Dim i As Integer
For i = 1 To Workbooks.Count
If Right(Workbooks(i).Name, Len(str)) = “FACT.xls” Then
Workbooks(i).Activate
Exit For
End If
Next
End Sub
[/codebox]