if A1<0 let B2 =A1 and if A1>=0 let B3=A1 solve PLEASE!!!!!!!!!!

T

techwiz101

i am trying to create a financial record Book. and i want evaluate if the
value of the number is negative and if so duplicate the value onto another
cell.
 
C

carlo

i am trying to create a financial record Book. and i want evaluate if the
value of the number is negative and if so duplicate the value onto another
cell.

Put in B2: =if(A1<0,A1,"")
and in B3: =if(A1>=0,A1,"")

hth

Carlo
 
Top