0
for kindness, I’m with a doubt in VBA - MS EXCEL 2016
I need to create a macro that when I trigger it, it looks for a.png image on my computer and inserts it on the spreadsheet with the gradual effect of Fade-in. After that, the image should appear for 3 seconds and there should be the effect of "Delete" of the image, not to disturb the editing of the spreadsheet.
I tried several macro methods for this solution, and always something wrong.
Please, you could help me with the coding?
Thank you very much!
Note: The code I was using was:
Sub Imagem_na_Planilha()
Dim Plan As Worksheet, Imagem As Shape
Dim Clear As Double
Set Plan = ActiveSheet
Set Imagem = Plan.Shapes.AddPicture("C:\Downloads\gg.PNG", msoFalse, msoCTrue, 50, 100, 170, 70)
End Sub