Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to make hyperlinks from list of addresses. I am using this
macro and am getting a "next without for" error at the end. Can someone tell me what I need to do to fix this? Thanks, Todd Sub MakeHyperlinkFormulas() Dim cell As Range Dim hyperlinkaddress As String, hyperlinktext As String For Each cell In Selection hyperlinkaddress = Trim(cell.Text) hyperlinktext = Trim(cell.Text) If hyperlinktext = "" Then GoTo skipit If hyperlinktext < "" Then If InStr(1, hyperlinkaddress, "@") Then If LCase(Left(hyperlinkaddress, 7)) < "mailto:" Then hyperlinkaddress = "mailto:" & hyperlinkaddress End If Else If InStr(1, hyperlinkaddress, ".") = 0 Then GoTo skipit If LCase(Left(hyperlinkaddress, 7)) < "http://" Then hyperlinkaddress = "http://" & hyperlinkaddress End If End If cell.Formula = "=HYPERLINK(""" & hyperlinkaddress & _ """,""" & hyperlinktext & """)" skipit: Next cell End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Shortcut key for "Paste Options" and "Error Checking" buttons? | Excel Discussion (Misc queries) | |||
What is Error "Method "Paste" of object "_Worksheet" failed? | Excel Programming | |||
"Subscript out of range" error for: Workbooks("Test1.xls").Save | Excel Programming | |||
"Clean Me" Macro is giving "#VALUE!" error in the Notes field. | Excel Programming | |||
Getting "compile error" "method or data member not found" on reinstall | Excel Programming |