[vba]

For Each cell in Range("MyRange")

If cell.Value Then

Workbooks.Open cell.Offset(0, 1).Value2
Exit For
End If
Next cell
[/vba]