WaterSprite
Technical User
My Code: I just run this with a loop 31 times. Works great.
[ActiveCell.Value = ActiveCell.Offset(0, -1) - ActiveCell.Offset(1, -1)]
[Activecell.Offset(1, 0).Activate]
My Question: It is suggested that we not use Activate, Select, etc as it slows our code down. I just do not know how else to move to the next cell below and have it become the active cell without using Activate.
And my spreadsheet is small, so speed is not a problem at this point, but I can see how something large would take a while with code written this way.
[ActiveCell.Value = ActiveCell.Offset(0, -1) - ActiveCell.Offset(1, -1)]
[Activecell.Offset(1, 0).Activate]
My Question: It is suggested that we not use Activate, Select, etc as it slows our code down. I just do not know how else to move to the next cell below and have it become the active cell without using Activate.
And my spreadsheet is small, so speed is not a problem at this point, but I can see how something large would take a while with code written this way.