AngleseyExcel
New Member
- Joined
- Feb 4, 2021
- Messages
- 38
- Office Version
- 365
- 2016
- Platform
- Windows
VBA Code:
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 data and post the snapshot into a seperate sheet. Is there any way if modifying it so it displays the snapshot as a popup window ?
Any help would be greatly appreciated. TIA