ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   copy if (https://www.excelbanter.com/excel-discussion-misc-queries/261758-copy-if.html)

Derek

copy if
 
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

JLatham

copy if
 
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,"")


"Derek" wrote:

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


FSt1

copy if
 
hi
in m2 enter...
=if(A1="","",A2)

regards
FSt1

"Derek" wrote:

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


Joe User[_2_]

copy if
 
"JLatham" wrote:
if A1 is numeric:
=IF(A1<0,A2,0) or =IF(A1<0,A2,"")


And what if A1 "has data", but it is zero? Rhetorical question.


and if A1 is text
=IF(A1<"",A2,0) or =IF(A1<"",A2,"")


That is also the correct way to determine if A1 "has data" that is numeric.


----- original message -----

"JLatham" wrote in message
...
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,"")


"Derek" wrote:

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



JLatham

copy if
 
No argument with the <0 issue - the data itself could be zero. As for the
other, I like to do it that way when I'm explicitly looking for text entries
in a cell, although might even consider using ISBLANK() but we don't know
that the cell to be tested has a formula or not.

"Joe User" wrote:

"JLatham" wrote:
if A1 is numeric:
=IF(A1<0,A2,0) or =IF(A1<0,A2,"")


And what if A1 "has data", but it is zero? Rhetorical question.


and if A1 is text
=IF(A1<"",A2,0) or =IF(A1<"",A2,"")


That is also the correct way to determine if A1 "has data" that is numeric.


----- original message -----

"JLatham" wrote in message
...
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,"")


"Derek" wrote:

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


.



All times are GMT +1. The time now is 05:47 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com