Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 390
Default Copy Row based on Column

Using VBA, I need to copy a row from column B through K once text data is
input into column K from that row. I need the data copied from the sheet
named €œEMS€ to the first sheet named €œEOC€. The copied data would be placed
in the last row in columns B to K of the EOC Sheet.

Is this possible.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Copy Row based on Column

Try this
http://www.rondebruin.nl/copy1.htm

This one
http://www.rondebruin.nl/copy1.htm#ActiveCellrow

--
Regards Ron de Bruin
http://www.rondebruin.nl


"Bill" wrote in message ...
Using VBA, I need to copy a row from column B through K once text data is
input into column K from that row. I need the data copied from the sheet
named "EMS" to the first sheet named "EOC". The copied data would be placed
in the last row in columns B to K of the EOC Sheet.

Is this possible.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Copy Row based on Column

I forgot

You can use a event to run the macro

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 11 Then
MsgBox "yourmacro"
End If
End Sub

See
http://www.cpearson.com/excel/events.htm



--
Regards Ron de Bruin
http://www.rondebruin.nl


"Ron de Bruin" wrote in message ...
Try this
http://www.rondebruin.nl/copy1.htm

This one
http://www.rondebruin.nl/copy1.htm#ActiveCellrow

--
Regards Ron de Bruin
http://www.rondebruin.nl


"Bill" wrote in message ...
Using VBA, I need to copy a row from column B through K once text data is
input into column K from that row. I need the data copied from the sheet
named "EMS" to the first sheet named "EOC". The copied data would be placed
in the last row in columns B to K of the EOC Sheet.

Is this possible.





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
MACRO - copy rows based on value in column to another sheet Michael A Excel Discussion (Misc queries) 1 March 5th 05 02:15 AM
copy to another sheet based on column value Mike Excel Programming 4 March 5th 05 12:50 AM
Copy data in column based on cell value oakman[_13_] Excel Programming 0 October 27th 04 05:49 PM
Copy data in column based on cell value oakman[_12_] Excel Programming 1 October 27th 04 05:13 PM
Copy data in column based on cell value oakman[_11_] Excel Programming 2 October 27th 04 04:00 PM


All times are GMT +1. The time now is 10:21 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"