Exact Copy

S

Saxman

If I type for example, '5/2' in a cell formatted as text, how can I
simultaneously make a duplicate of this data in another cell?

TIA
 
D

Don Guillett

You can use a link =sheet1!a2 or a worksheet_change event

if target.column<>2 then exit sub
target.offset(0,4).value=target
 
S

Saxman

You can use a link =sheet1!a2 or a worksheet_change event

if target.column<>2 then exit sub
target.offset(0,4).value=target

I got it. I just couldn't think today! =A2 and format the cells to
General.
 
Top