View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
R..VENKATARAMAN R..VENKATARAMAN is offline
external usenet poster
 
Posts: 41
Default use of indirect function in vba

thank you. that helps.


"Executor" wrote in message
oups.com...
Hi,

Try:

Sub myIndirect()
Range("E8").Select
ActiveCell.Value = Range(Range("A1").Value).Value
End Sub

Hoop this helps,


Executor