Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() i have 2 cells, ---Time----Day---- --640------Mon--- how do i copy the 2 different data from 2 different cells into 1 cell,example as below, ---Remarks-- --Mon 640--- -- new_to_vba ------------------------------------------------------------------------ new_to_vba's Profile: http://www.excelforum.com/member.php...o&userid=30131 View this thread: http://www.excelforum.com/showthread...hreadid=516065 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi New_to_VBA,
Manually: A1: 640 B1 Mon C1: =B1 & " " & A1 == Mon 640 With VBA: Range("C1").Value = Range("B1").Value _ & " " & Range("A1").Value --- Regards, Norman "new_to_vba" wrote in message ... i have 2 cells, ---Time----Day---- --640------Mon--- how do i copy the 2 different data from 2 different cells into 1 cell,example as below, ---Remarks-- --Mon 640--- -- new_to_vba ------------------------------------------------------------------------ new_to_vba's Profile: http://www.excelforum.com/member.php...o&userid=30131 View this thread: http://www.excelforum.com/showthread...hreadid=516065 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Range("C2").Value = Range("B2").Text & " " & Range("A2").Text
-- Regards, Tom Ogilvy "new_to_vba" wrote in message ... i have 2 cells, ---Time----Day---- --640------Mon--- how do i copy the 2 different data from 2 different cells into 1 cell,example as below, ---Remarks-- --Mon 640--- -- new_to_vba ------------------------------------------------------------------------ new_to_vba's Profile: http://www.excelforum.com/member.php...o&userid=30131 View this thread: http://www.excelforum.com/showthread...hreadid=516065 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Select max value from 9 cells, copy cell col heading to other cell | New Users to Excel | |||
How to copy single cell into cell that is merged from two cells? | Excel Discussion (Misc queries) | |||
Copy cells into range of cells until cell change | Excel Worksheet Functions | |||
VBA to copy to empty cell directly below a cell when analogous cells in different column have same value as each other? | Excel Programming | |||
VBA to copy to empty cell directly below a cell when analogous cells in different column have same value as each other? | Excel Programming |