View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
meggie meggie is offline
external usenet poster
 
Posts: 5
Default Run Time Error '9':subscript out of range


Thanks Jacob that solves my problem perfectly.
Thanks Again


"Jacob Skaria" wrote:

Try the below..

Sub herdparameters()

Dim ws1 As Worksheet
Dim ws2 As Worksheet

Set ws1 = Sheets("With hmodel")
Set ws2 = Sheets("With herd")

For i = 1 To 20
ws1.Cells(8, 3).Value = ws2.Cells(46 + i, 3).Value
ws1.Cells(12, 3).Value = ws2.Cells(46 + i, 23).Value
ws1.Cells(13, 3).Value = ws2.Cells(46 + i, 29).Value
ws1.Cells(11, 6).Value = ws2.Cells(46 + i, 15).Value
ws1.Cells(12, 6).Value = ws2.Cells(46 + i, 10).Value

Calculate
Next

End Sub
--
If this post helps click Yes
---------------
Jacob Skaria


"meggie" wrote:


Hi,
I am realativley new user of VBA and am having trouble getting cells on one
page equal to the particular cells in the other page. I previosuly had the
code set up for cells on the same page equaling each other and the code was
running fine. I now get a Run time Error '9':sbscript out of range I have
checked and made sure that the page name is correct however am still getting
this error. Any help would be fantastic

Sub herdparameters()

For i = 1 To 20

Sheets("With hmodel")(8, 3).Value = Sheets("With herd").Select(46 + i,
3).Value

Sheets("With hmodel")(12, 3).Value = Sheets("With herd")(46 + i, 23).Value

Sheets("with hmodel")(13, 3).Value = Sheets("with herd")(46 + i, 29).Value

Sheets("with hmodel")(11, 6).Value = Sheets("with herd")(46 + i, 15).Value

Sheets("with hmodel")(12, 6).Value = Sheets("with herd")(46 + i, 10).Value

Calculate

Next

End Sub