Copy text frm a cell n append it thru macro
Solved/Closed
Related:
- Copy text frm a cell n append it thru macro
- Excel online macro - Guide
- Excel run macro on open - Guide
- Cell phone codes - Guide
- Automatically run macro in excel when cell changes - Guide
- Excel cell color formula - Guide
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Mar 9, 2012 at 01:30 AM
Mar 9, 2012 at 01:30 AM
suppose the relevant cells are A1 in sheet1 and A1 in sheet 2
try this macro
try this macro
Sub test() Worksheets("SHEET2").Range("a1") = Worksheets("SHEET2").Range("A1") & " " & Worksheets("sheet1").Range("a1") End Sub
Mar 9, 2012 at 01:50 AM
Thanks a lot :)