Una famiglia di software per fogli di calcolo Microsoft con strumenti per l'analisi, la creazione di grafici e la comunicazione dei dati.
Se ho capito, nel modulo di codice del foglio dove inserisci la tua R in colonna G:
Private Sub Worksheet_Change(ByVal Target As Range)
With Target
If .Column = 7 Then
If .Value = "R" Then
Call m(.Row)
End If
End If
End With
End Sub
Private Sub m(ByVal lRow As Long)
Dim sh As Worksheet
Dim lRiga As Long
Set sh = ThisWorkbook.Worksheets("Dintorni")
With sh
lRiga = .Range("A" & .Rows.Count).End(xlUp).Row + 1
Me.Range(Me.Cells(lRow, 1), Me.Cells(lRow, 6)).Copy
.Range("A" & lRiga).PasteSpecial
Me.Range(Me.Cells(lRow, 1), Me.Cells(lRow, 6)).ClearContents
Application.CutCopyMode = False
End With
Set sh = Nothing
End Sub