René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

Make bold [Excel macro]

sub make_bold 
    dim rng as range

    set rng = range("a1")

    rng.value     = "Some Text"
    rng.font.bold = true

end sub