B
Brettjg
Hmmmm. There must be a trick to this one. The following code works just fine:
With ActiveSheet.Shapes("TB purchase n")
.Fill.Visible = msoTrue
End With
but this does not work:
With ActiveSheet.Shapes("TB purchase n")
.Font.Bold = True
End With
It seems when I'm working with a font I have to select the shape (which I'd
rather not do). This works:
ActiveSheet.Shapes.Range("TB purchase n").Select
Selection.Font.Bold = True
Could someonr throw some light on this for me please? Regards, Brett.
With ActiveSheet.Shapes("TB purchase n")
.Fill.Visible = msoTrue
End With
but this does not work:
With ActiveSheet.Shapes("TB purchase n")
.Font.Bold = True
End With
It seems when I'm working with a font I have to select the shape (which I'd
rather not do). This works:
ActiveSheet.Shapes.Range("TB purchase n").Select
Selection.Font.Bold = True
Could someonr throw some light on this for me please? Regards, Brett.