I'm creating a VB macro to loops through cells and copy and paste the values into notepad. What I'd like to do is prompt the user and ask if they'd like to continue before doing the next iteration.
Sub LoopTest()
Dim rng As Range, cell As Range
Set rng = Range("A1:A2")
For Each cell In rng
cell.Copy
'Worksheets("Sheet1").Range("A" + j).Copy
Shell "C:\Windows\system32\notepad.exe", vbNormalFocus
SendKeys "^V"
DoEvents
SendKeys "{ENTER}", True
Next cell
End Sub