formating individual cells

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, I am trying to format individual cells to give me a negative answer, can
this be done. Example: 2 + 2 = 4 I need to try and get the answer to become
2 + 2 = -4 any help would be appreciated thanks in anticipation!
 
Assuming the two cells are in A1 and B1
enter in C1
=-A1-B1

Greetings from New Zealand
Bill K
 
No such luck but thanks what I am trying to achieve is for example in cell
'O'11 I need to place the formula to produce the answer. In cell 'O'6 the
the number I want to multipy the number in cell 'P'10 with this produces an
negative answer and I need to try and get it to produce a positive answer by
somehow getting rid of the minus sign in the answer cell O11. Sum I am doing
is 0.36 x -23.5 = -8.46 need to tyry and get it to become 8.46. ?.
 
Try:

=ABS(O6*P10)

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 
what does ABS do/mean? and if I wanted to do the opposite make a positive a
negative can you tel me what needs to be done?

Cheers
 
ABS( ) gives you the absolute value, i.e. the magnitude without the
sign. If you want to force a value to be negative, you can multiply
this by -1, i.e.:

=-1*ABS(whatever)

Hope this helps.

Pete
 
ABS gives you the absolute value of a number, i.e. the number without its
sign. As with virtually any of Excel's worksheet functions you can find
information in Excel's help.

If you want merely to reverse the sign of a calculation (positive to
negative, or nehative to positive), just use a minus sign
=-O6*P10
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top