• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Adding Value To Hidden Sheet?

I've been using Sheet2.Visible = True, and then setting it back to False after I write the data. But is there any way to bypass the true false visibility statements?
 
Hi,


You can still write to t hiiden sheet.


Sub test()

Sheets("test").Visible = False

Sheets("test").Range("A1").Value = 500

End Sub


name a sheet "test"

Set any cell on your any visible sheet to =Test!A1

run the above code and you ahould see the 500 appear on the visible sheet
 
Back
Top