View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
avi avi is offline
external usenet poster
 
Posts: 195
Default Copy a range to another "transformed" range

I am looking for a VBA procedure that automatically copy the
OriginalRange and paste it "transformed" to another location

The procedure should work with one column range and do something like

set OriginalRange=Selection
OriginalRange.copy
Cells(1,100).select
Calculate the Log of the original range
Paste the "transformed" selection starting from Cells(1,100)

Thanks
Avi