simple range problem

C

cantonarv

what am i doing wrong

dim myRange as Range
dim iNum as integer
iNum= 6

Set myRange = Cells(iNum + 2, 1)
myRange.Value = 34

trying to set a cell myRange to cell(8,1)
then putting the value 34 into the cell
 
D

Don Guillett

I just tested with xl2002 and it worked fine but why not just
cells(inum+2,1)=34
or
cells(8,1)=34
 
Top