Thread: Row Reference
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Przybo Przybo is offline
external usenet poster
 
Posts: 1
Default Row Reference

Can anyone help me with this code?

I'm not sure why it's not working


Private Sub MultiPage1_Change()
Dim RowNumber As Variant

RowNumber = Sheets("Access Upload").ActiveCell.Row

TextBox1.Value = Sheets("Access Upload").Range("A " & RowNumber & "")

End Sub