点击excel中单元格中的数据后,需要将数据复制到浏览器&浏览器打开。
示例:我在Excel中的单元格A1
中有“Stackoverflow”文本。单击单元格后,应将内容复制到所需的浏览器,例如:google.co.in
,浏览器应打开,显示结果。
答案 0 :(得分:0)
Private Sub IE_Autiomation()
Dim IE As Object
For Each cell In Range("A1:A200")
' Create InternetExplorer Object
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = False
' Set webpage address(google+searching word
IE.Navigate ("http://www.google.com/?gws_rd=ssl#q=" & cell.Value)
IE.Visible = True
Next
End Sub
你需要这样的东西吗?
答案 1 :(得分:0)
可能的解决方案如下:
将以下宏添加到按钮:
With Worksheets(1)
.Hyperlinks.Add Anchor:=.Range("A1:B3"), _
Address:="http://www.google.co.in/search?q=" & ActiveCell.Value
End With
A1:B3
替换为您的范围我并不是说这是最好的解决方案,但它确实需要,因为我们遵循上述步骤
答案 2 :(得分:-1)
我使用了这段代码。谢谢大家。
Private Sub CommandButton3_Click()
Dim IE As Object
For Each cell In Range("b7")
' Create InternetExplorer Object
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = False
' Set webpage address(google+searching word
IE.Navigate ("http://www.google.co.in/?gws_rd=ssl#q=" & cell.Value)
IE.Visible = True
Next
End Sub