Vba Code To Select Image In Sheet

[Solved] Vba Code To Select Image In Sheet | Vb - Code Explorer | yomemimo.com
Question : vba code to select image in sheet

Answered by : rajesh-thevar

Sub SelectPictureAtActiveCell() Dim Pic As Shape For Each Pic In ActiveSheet.Shapes If Pic.TopLeftCell.Address = ActiveCell.Address Then If Pic.Type = msoPicture Then Pic.Select Exit For End If End If Next
End Sub

Source : https://www.mrexcel.com/board/threads/how-to-select-picture-at-activecell-by-vba.954010/ | Last Update : Fri, 15 Jan 21

Answers related to vba code to select image in sheet

Code Explorer Popular Question For Vb