return a value from VB to a spreadsheet

  • Thread starter Thread starter Punx
  • Start date Start date
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!!!
 
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)
 
Back
Top