How to prefix Plus sign "+" before the number if the value is negative in Google Sheets or MS Excel?

12,635

You can try going to Format > Number > More formats > Custom number format and inserting the following expression: "-"0;"+"0;0

This will cause negative values to be show with a + sign, and positive ones to be shown with a - sign. The value that it holds, however, will still be the original one (as a number).

Share:
12,635
kalyan
Author by

kalyan

I am an Internet Marketing, market websites for clients and also build websites on WordPress. Already built a few sites on WP.

Updated on June 05, 2022

Comments

  • kalyan
    kalyan almost 2 years

    I am trying to add/prefix a plus sign "+" if the value is negative. e.g. +10

    I have sheet where some bill payments are made and sometimes they overpay. So, the Balance column should reflect like +(over paid value).

    I tried with =CONCATENATE but this does not help. It comes as +-10

    =IF(C2<0,CONCATENATE("+",C2),"")
    

    enter image description here

  • kalyan
    kalyan over 4 years
    thanks. it actually works but only visually. The value ceases to be a number and hence it does not count when added with another number.
  • lapo
    lapo over 3 years
    I had to use +0;-0;0 or it would put a - in front of positive numbers.