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

  • Thread starter Thread starter techwiz101
  • Start date Start date
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.
 
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
 
Back
Top