macro with dynamic input

G

Guest

Hi all

I want to pass on cell value of A1 into VB script every time i run a macro

which command should i use?
 
S

Susan

are you taking about VB or VBA? there's a difference.
if you're talking about VBA, then all you have to do is declare the
variable. as long as that worksheet is still open, the variable will
still be there.........

for code in THAT worksheet:

dim myValue as variant
myValue = worksheet("sheet1").range("A1")

for code in a DIFFERENT workbook (that must be open):
dim myValue as variant
dim wb1 as workbook
dim ws1 as worksheet

set wb1 = DifferentWorkbook.xls
set ws1 = Worksheets(1)

myValue = wb1.ws1.range("A1")

if you're talking about VB, i don't know. try the programming
newsgroup.
:)
susan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top