syntax issue with VBA: cut/paste into offset cell

ansvk1

Board Regular
Joined
Oct 6, 2017
Messages
82
Office Version
  1. 2019
  2. 2013
Platform
  1. Windows
Hi there,
i am trying and trying but unable to get the simple vba code to work correctly for the below. I wanted to:
  1. cut from active cell and
  2. paste that value only into offset cell (1,-1)
  3. unbold the text
Can someone please help? Thanks in advance!

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
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
One way:
Code:
Sub Macro2()
    With ActiveCell
        .Offset(1, -1).Value = .Value
        .Offset(1, -1).Font.Bold = False
        .ClearContents
    End With
End Sub
 
Upvote 0
This should also work...
Code:
Sub CutActiveCellDownOneAndToTheLeftOneAndBold()
  ActiveCell.Cut ActiveCell.Offset(1, -1)
  ActiveCell.Offset(1, -1).Font.Bold = True
End Sub
 
Last edited:
Upvote 0
both responses worked fine, Thanks guys!
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,016
Messages
6,128,299
Members
449,437
Latest member
Raj9505

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top