VB and exel tutorial
VB and exel tutorial
(OP)
where can i get a vb and exel tutorial or at leat the basics?
how can I send data from exel to the Visual basic editor to do calc?, how can I send the results back to the exel page?
thx very much
how can I send data from exel to the Visual basic editor to do calc?, how can I send the results back to the exel page?
thx very much





RE: VB and exel tutorial
Regarding your other questions, look in the VBA help. There's a ton of sample code, most of which does just what you're talking about.
A simple example of using VBA to write to a cell is:
Sub temp()
activecell.value=3
end sub
Really, explore the help.
You could also try one of the many books on the subject. I like John Walkenbach's stuff. Also, check out his site at www.j-walk.com
RE: VB and exel tutorial