klornpallier
Technical User
What I need to do is say "If any cell value on a worksheet = "6.2b" Then set the cell to a hyperlink of Is this possible.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim rR as range
for each rR in activesheet.usedrange
with rR
if .value = "6.2b" then
'insert your hyperlink code here modified to range [b]rR.[/b] rather than Selection.
end if
end with
next
Dim rR As Range
For Each rR In ActiveSheet.UsedRange
If [b]rR[/b].Value = "6.2B" Then
ActiveSheet.Hyperlinks.Add Anchor:=[b]Range(rR.Address)[/b], Address:= _
"\\isesrfiler\NHS_HR-Pay\Data Migration\Data Management\DM Upload Team\6.2b Release Note.xls"
End If
Next