|
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
请教一个简单的问题,怎样通过vba实现 对外部xls文件中 符合条件的 单元格 批量添加超链接。
y = Me.UsedRange.Count - 1
For i = 1 To y
If Workbooks( "C:\MyBook.xls").Worksheets("sheet1").Trim(Cells(i, str1).Value) = str2 And Workbooks("C:\MyBook.xls").Worksheets("sheet1").Cells(i, str1).Font.Bold Then
x = "リンクの添付が完成しました"
MsgBox x
For j = i + 1 To y
If Workbooks("C:\MyBook.xls").Worksheets("sheet1").Trim(Cells(j, str1).Value) <> "" Then '遍歴非空単元格
Workbooks("C:\MyBook.xls").Worksheets("sheet1").Cells(j, str1).Hyperlinks.Add Cells(j, str1), "", , str3
End If
Next j
End If
Next
新手刚入门 望高人指教! 谢谢!!! |
|