Option Explicit
Sub Rng_Snapshot()
Dim rng As Range
Application.ScreenUpdating = False
Set rng = Sheet89.Range("U14:AU61")
rng.CopyPicture
On Error Resume Next
Sheet4.Range("A1").PasteSpecial
Set rng = Nothing
Application.ScreenUpdating = True
End Sub
I'm using the above code to create a snapshot of a range of cells and paste it into a separate sheet. Is there any way of modifying it so it displays the snapshot as a popup window in front of everything else ?
question from:https://stackoverflow.com/questions/66054234/range-snapshot-as-a-popup-window