View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default Using command button to return numerical value from worksheet

Private Sub CommandButton1_Click()
Dim iLastRow as long

iLastRow = Cells(Rows.Count,"A").End(xlUp).Row
TextBox1.Text = Cells(iLastRow,"H").Value
End sub

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Brad J." wrote in
message ...

Hi, I am trying to use a command button on a user form which when
depressed, will return the value of a specific cell in the last row of
my worksheet and display that value in a text box on the user form.

Is there a way to do this?

Thank you,
Brad


--
Brad J.
------------------------------------------------------------------------
Brad J.'s Profile:

http://www.excelforum.com/member.php...o&userid=21713
View this thread: http://www.excelforum.com/showthread...hreadid=554532