I am new to VBA but have some experience with basic. Can anyone please let me know the syntax for setting an image property according to the value of a cell? For example, I would like to place a VBA image at a certain height, according to cell AC15. My picture "Red Trend Line.jpg" does show up in the image box, but when I added the third line below to set the top position of the image box according to cell AC15, it did not move accordingly. Thanks!

Private Sub Image1_Click()
Image1.Picture = LoadPicture("C:\Users\User1\Documents\Personal\Devices\Monitor Concepts\Model\Red Trend Line.jpg")
Image1.Top = Workbooks("Model Screen Data.xlsm").Sheets("Sheet1").Range("AC15")
End Sub