D
David
can you copy part of a cell, ie i want to take the first 8 characters of a
cell and copy into another cell
thanks
David
cell and copy into another cell
thanks
David
מיכ×ל (מיקי) ×בידן said:Assuming cell A1 is the source - select the target cell and run this tiny
Macro.
------------------------------------------
Sub Copy_First_8_Characters()
ActiveCell = Left([A1], 8)
End Sub
------------
If you care to take control over the Source cell via code whie the target
cell remains the selected cell - you can try this one:
Sub Copy_First_8_Characters()
ActiveCell = Left([A1], 8)
End Sub
-----------------
Micky
David said:can you copy part of a cell, ie i want to take the first 8 characters of a
cell and copy into another cell
thanks
David