すいませんできました。
Sub testo()
If Not TypeOf Selection Is Range Then Exit Sub
Dim i As Long
Dim sPrev As String
Open "C:\test.tmp" For Output As #1
' // Output html
sPrev = ""
For Row = 1 To 4
Print #1, Cells(Row, 1) & "...<a href=""" & Cells(Row, 2) & """target=""_blank"">続きはこちら</a><br>"
Next
Close #1
Shell "notepad.exe C:\test.tmp", vbNormalFocus
End Sub
お礼
せっかく回答して頂いたんですが、上手くいきませんでした。すいませんが、もう少し詳しく教えていただけないでしょうか?
補足
すいませんできました。 Sub testo() If Not TypeOf Selection Is Range Then Exit Sub Dim i As Long Dim sPrev As String Open "C:\test.tmp" For Output As #1 ' // Output html sPrev = "" For Row = 1 To 4 Print #1, Cells(Row, 1) & "...<a href=""" & Cells(Row, 2) & """target=""_blank"">続きはこちら</a><br>" Next Close #1 Shell "notepad.exe C:\test.tmp", vbNormalFocus End Sub