View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ChrisB[_3_] ChrisB[_3_] is offline
external usenet poster
 
Posts: 2
Default Simple VBA - What's wrong??


Here's my sub-procedure, I am getting the error
message "Subscript out of range". Please help, I am only
wanting to set the cells value to a variable.

Public Sub TEST()
Dim strCellTest As String

sCellTest = Worksheets("Sheet1").Cells(1, 1).Value
Debug.Print sCellTest

End Sub

Also, how do I SET a cells value? Like this?:

Worksheets("Sheet1").Cells(1, 1).Value = strNewVal

Thanks in advance,

ChrisB