bjurney
Active Member
- Joined
- Aug 24, 2009
- Messages
- 320
I am trying to use the evaluate in my code so I dont have a bunch of formulas in my workbook. what I am trying to do is get it so it looks something like this:
I need it to run down several hundred rows, so I dont want to type that out 100's of times, so I am wondering if there is a way to get it to work with using less code. I tired something like this, but they all end up equaling the same thing, I need it to equal the next cell down:
Code:
Range("L20").Value = Evaluate("=D2")
Range("L21").Value = Evaluate("=D3")
I need it to run down several hundred rows, so I dont want to type that out 100's of times, so I am wondering if there is a way to get it to work with using less code. I tired something like this, but they all end up equaling the same thing, I need it to equal the next cell down:
Code:
Range("L20:L21").Value = Evaluate("=D2")