Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Paste special to the active cell

Hi!
i need some help
I have 200 columns that in the 3nd row on each of them there is a
input box. So, in A3, B3, C3, D3, E3 etc there is an input box. I fil
the input box with numbers and a formula doing a calculation. The resul
of the calculation returns to the column IV starting from the row 4.
I want to copy the column IV and paste special to the column that
last use to activate the input box. (Eg.If i was on D3 and i activat
the input box i want to paste special the column IV to the column
starting from the D4)

Thanks in advance
Stathi

--
Message posted from http://www.ExcelForum.com

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Paste special to the active cell

I wonder why you do not just put formulas underneath the input boxes ...
? However, this macro will do as you request :-

Code:
--------------------

Sub test()
Dim rg As Range
c = ActiveCell.Column
Set rg = ActiveSheet.Range(Cells(4, c), Cells(200, c))
rg.Value = Range("IV4:IV200").Value
End Sub

--------------------



---
Message posted from http://www.ExcelForum.com/

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Paste special to the active cell

Thanks a lot !
That all I wante

--
Message posted from http://www.ExcelForum.com

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Target cell showing a ' after I PasteSpecialValue. Why? TWT Excel Discussion (Misc queries) 2 February 16th 09 01:24 PM
When I pastespecialvalue, I get a ' or ^ at the target cell. Why TWT Excel Discussion (Misc queries) 1 February 16th 09 01:24 PM
Copy and Paste Special (Formulas) pastes cell value if numeric [email protected] Excel Discussion (Misc queries) 2 May 2nd 06 06:24 PM
Copy Paste Special Link Cell Problem cpetta Links and Linking in Excel 6 July 2nd 05 12:58 AM
Dynamic Copy/Paste Special Formulas/Paste Special Values Sharon Perez Excel Programming 3 August 7th 04 09:49 PM


All times are GMT +1. The time now is 07:57 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"