Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Replace the VBA code with the Qm code error
#15
QM in the following code can be streamlined? For example, VBA will use the(with) statement

Ran.Bold = 1
Ran.Font.Size = 15
Ran.Font.Name = "Stencil"

VBA(use with):

With aRange
.Bold = True
With .Font
.Name = "Stencil"
.Size = 15
End With
End With


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)