Click to See Complete Forum and Search --> : Excel


April 2nd, 1999, 02:16 PM
How can I extract the data form a specific cell from an Excel97 spreedsheet into a textbox

Ingolf Brudeli
April 5th, 1999, 09:31 AM
Hi.

If your textbox is named textbox1, and your cell to retreive is B1 it will look like this example :
textbox1.text=range("B1")

or you can do like :
textbox1.text=cells(1,2)


Hope this helps.

InB