Copy text frm a cell n append it thru macro
Solved/Closed
Related:
- Copy text frm a cell n append it thru macro
- Spell number in excel without macro - Guide
- Excel macro to create new sheet based on value in cells - Guide
- Count if cell contains number - Excel Forum
- If cell contains date then return value ✓ - Office Software Forum
- Excel conditional formatting if another cell contains specific text ✓ - Excel Forum
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 :)