HI:
I have a table with one column with the path of some images (B)
I would like when I put the mouse over one cell of a column (A), that show the image of the path of the column B, but when I move the mouse from the cell close the image.
I have one example but it only works for one excell.I would like to modify it to use for one complete column. If I put the mouse in A1 open the image of the path that it is in B1, the same for A2 and B2,.....
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If ActiveCell.Address = "$C$1" Then
ActiveSheet.Pictures.Insert("C:\Documents and Settings\Administrator\My Documents\My Pictures\Sample.jpg").Select
End If
End Sub
I need:
1) Covert it in an mouseover.
2) Work by ranges
Could you help me?
Thanks in advance
I have a table with one column with the path of some images (B)
I would like when I put the mouse over one cell of a column (A), that show the image of the path of the column B, but when I move the mouse from the cell close the image.
I have one example but it only works for one excell.I would like to modify it to use for one complete column. If I put the mouse in A1 open the image of the path that it is in B1, the same for A2 and B2,.....
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If ActiveCell.Address = "$C$1" Then
ActiveSheet.Pictures.Insert("C:\Documents and Settings\Administrator\My Documents\My Pictures\Sample.jpg").Select
End If
End Sub
I need:
1) Covert it in an mouseover.
2) Work by ranges
Could you help me?
Thanks in advance