Hi there,
i am trying and trying but unable to get the simple vba code to work correctly for the below. I wanted to:
i am trying and trying but unable to get the simple vba code to work correctly for the below. I wanted to:
- cut from active cell and
- paste that value only into offset cell (1,-1)
- unbold the text
Code:
Sub PreCR_FindingCat_creation_cut_paste()
'cntrl+Shift+C
ActiveCell.Cut
ActiveCell.Offset(1, -1).Paste
Application.CutCopyMode = False
With ActiveCell.Select
Bold = False
End With
End Sub