Apr 10, 2004 #1 enque Civil/Environmental Joined Dec 7, 2002 Messages 20 Location MX 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
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
Apr 10, 2004 #2 Beggar Mechanical Joined Mar 24, 2004 Messages 715 Location US Typing "excel vba tutorial" into google spit out a bunch of 'em. 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 http://www.j-walk.com Upvote 0 Downvote
Typing "excel vba tutorial" into google spit out a bunch of 'em. 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 http://www.j-walk.com
Apr 10, 2004 Thread starter #3 enque Civil/Environmental Joined Dec 7, 2002 Messages 20 Location MX Thx you very much Beggar Upvote 0 Downvote