I would appreciate it if someone out there can help me. I have the following VBA code:
And further on have the following:
The area B5 to Last Row is copying in the bold font from the various sheets. How can I "unbold" the font?
Thank you in anticipation
Clyde
VBA Code:
Range("B5:B74").Select
Selection.ClearContents
Range("B5").Select
Dim bCell As Range
Dim wt As Worksheet
Set bCell = ThisWorkbook.Worksheets("Rec").Range("B5")
For Each wt In ThisWorkbook.Worksheets
If wt.Name > Worksheets("Rec").Range("S2") And wt.Name < Worksheets("Rec").Range("T2") Then
wt.Range("F1").Copy
ActiveSheet.Paste bCell
Set bCell = bCell.Offset(1, 0)
End If
Next wt
And further on have the following:
VBA Code:
With ActiveWorkbook.Worksheets("Rec").Sort
.SetRange Range("A5:C" & LR)
.Header = xlNo
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
The area B5 to Last Row is copying in the bold font from the various sheets. How can I "unbold" the font?
Thank you in anticipation
Clyde
Last edited by a moderator: