Help with paste values format in VBA code

im2bz2p345

Board Regular
Joined
Mar 31, 2008
Messages
229
Hi everyone,

I was wondering if you could help me with something basic/small.

I have this set of code in a worksheet.

Code:
If Not rFound Is Nothing Then
      rFound.Offset(0, 1).Copy
      wTarget.Range(sTargetCol & lRow).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, _
              SkipBlanks:=False, Transpose:=False
       Set rFound = Nothing
    End If

What I am trying to do is instead of a PasteSpecial, pasting the value but in a specific font, font size, etc.

Do you know how I can adjust this code? Would something like this be needed:

Code:
       Selection.wTarget.Range(sTargetCol & lRow)
       With wTarget.Range(sTargetCol & lRow).Font
        .FontStyle = "Regular"
        .Name = "Arial"
        .Size = "8"
       .Strikethrough = False
       .Superscript = False
       .Subscript = False
       .OutlineFont = False
       .Shadow = False
       .Underline = xlUnderlineStyleNone
       .ColorIndex = xlAutomatic
       End With

Do I need to specify all the False statements or do I not need them in my code?

I'm not really sure on the proper syntax of how to write this, so I thought it would be best to ask on here.

Appreciate it!

~ Im2bz2p345 :)
 
Last edited:

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Just tried this little bit of code



Code:
Sub BoldIt()

Range("A1").Select
With Selection.Font
    .Size = 14
    .Bold = True
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,514
Messages
6,179,223
Members
452,896
Latest member
IGT

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