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

Writing with «cells» [Excel macro]

sub write_with_cells

    dim c as range

    set c=cells(4,2)    ' 4th row, 2nd column

    c.value = "some value"
  
end sub