Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() 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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Put current date into a cell when a macro is run | Excel Programming | |||
how do i tell a macro to begin in the current cell? | Excel Programming | |||
Want macro to select current cell | Excel Programming | |||
Macro to copy contents in current row to Sheet2 | Excel Programming | |||
Macro to copy current cell | Excel Programming |