D
Derek
I want to copy data from one cell to another, but only if a 3rd cell has data
example
M3=A2(if A1 has data)
do i need a macro for this
example
M3=A2(if A1 has data)
do i need a macro for this
JLatham said:if A1 is numeric:
=IF(A1<>0,A2,0) or =IF(A1<>0,A2,"")
and if A1 is text
=IF(A1<>"",A2,0) or =IF(A1<>"",A2,"")