Copy text frm a cell n append it thru macro
Solved/Closed
Related:
- Copy text frm a cell n append it thru macro
- If cell value changes then run macro - Guide
- How to compare two cell values in excel using macro ✓ - Forum - Excel
- Automatically Run Macro from a calculated cell value change ✓ - Forum - Excel
- If cell contains (multiple text criteria) then return (corresponding text criteria) ✓ - Forum - Excel
- Excel if cell contains date then return value ✓ - Forum - Office Software
1 reply
venkat1926
Mar 9, 2012 at 01:30 AM
- Posts
- 1864
- Registration date
- Sunday June 14, 2009
- Status
- Contributor
- Last seen
- August 7, 2021
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 :)