Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Need macro copy above cell to current

I need a cell to copy the above cell and paste into the current cell.
It would also help if It could append " P/O" at the end of the newly pasted
cell.

It might be simple, but I am having a hard time trying to make this work.
Any help would be greatly appreciated.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,311
Default Need macro copy above cell to current

One way:

ActiveCell.Value = ActiveCell.Offset(-1, 0).Value & " P/O"


"Mikey B" wrote in message
...
I need a cell to copy the above cell and paste into the current cell.
It would also help if It could append " P/O" at the end of the newly
pasted
cell.

It might be simple, but I am having a hard time trying to make this work.
Any help would be greatly appreciated.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Need macro copy above cell to current


activecell.Value = Activecell.Offset(-1,0).Value & " P/O"

--
Regards,
Tom Ogilvy


"Mikey B" wrote:

I need a cell to copy the above cell and paste into the current cell.
It would also help if It could append " P/O" at the end of the newly pasted
cell.

It might be simple, but I am having a hard time trying to make this work.
Any help would be greatly appreciated.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Need macro copy above cell to current

Thanks Tom O. and PCLIVE for your quick answers.

It works perfectly.
It makes sense, I just did'nt know the vocabulary.

Thanks again for the help
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
Put current date into a cell when a macro is run jonco Excel Programming 5 July 14th 06 11:31 AM
how do i tell a macro to begin in the current cell? marwildfw Excel Programming 6 May 12th 06 10:36 PM
Want macro to select current cell rdaugherty Excel Programming 9 October 13th 05 04:35 PM
Macro to copy contents in current row to Sheet2 theDude[_2_] Excel Programming 1 May 31st 05 06:27 PM
Macro to copy current cell [email protected] Excel Programming 4 May 17th 05 09:15 PM


All times are GMT +1. The time now is 03:39 AM.

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

About Us

"It's about Microsoft Excel"