return a value from VB to a spreadsheet

P

Punx

How can I return a value from a VB script (variable text
string) to a specific cell on a specific page on my
worksheet.

any help would be great!!!
 
B

Bob Phillips

Punx,

Try

Worksheets("Sheet1").Range("A1").Value = myVariable

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Top