Format % Question

  • Thread starter Thread starter Stan Atshuller
  • Start date Start date
S

Stan Atshuller

I have a number in percent format 5% I need it to be displayed as 5 with out
changing the formula. Excel multiplies by 100 and then add the % sign, I
need it to multiply by 100 and not add the % sign.
Is this possible?
Thanks!
Stan
 
Stan,

Formatted for 0 decimals:
=A1*100

or if you need to use it in a string:

="The percentage is " & TEXT(A1*100,"0") & "."

HTH,
Bernie
MS Excel MVP
 
Perhaps,

In a separate cell/column, type the whole number i.e. 5
say cell A1

Link the percentage cell to the 'display' cell above and
divide by 100 i.e A1/100.

You may then hide the percentage cell, if not required.

HTH,
--
Kevin James.
Tua'r Goleuni


|I have a number in percent format 5% I need it to be displayed as 5 with out
| changing the formula. Excel multiplies by 100 and then add the % sign, I
| need it to multiply by 100 and not add the % sign.
| Is this possible?
| Thanks!
| Stan
|
|
 

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

Similar Threads

Conditional Function 4
Array with Sum and multiply 12
Create a formula with conditions 6
Need formula 3
Formula 1
How to write a formulae 2
Setting up functions and rules 18
Conditional Format 1

Back
Top