A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
If you want to 'edit' one pair of cells (e.g A8, A9)
select the first cell (A8) and run the below vba macro
.
Sub Selection_Edit_Pair()
'## 09-11-2024 ##
Set r = Selection
With r
.Offset(, 1).Value = .Offset(1).Value
.Offset(1).Value = ""
End With
End Sub