how to get the percentage symbol with the result?

S

sumesh56

how to get the percentage symbol with the result?
i have a farmula to calculate the percentage. i want to get the resul
with the percentage sign.It should be something like this.
D2=540 E2=600
F2=PERCENTAGE(D2/E2*100)%
thanks
 
G

GS

how to get the percentage symbol with the result?
i have a farmula to calculate the percentage. i want to get the
result with the percentage sign.It should be something like this.
D2=540 E2=600
F2=PERCENTAGE(D2/E2*100)%
thanks.

Format F2 in the % style;
Change your formula to...

=D2/E2

...and that's it!

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion
 
S

Spencer101

sumesh56;1610794 said:
how to get the percentage symbol with the result?
i have a farmula to calculate the percentage. i want to get the resul
with the percentage sign.It should be something like this.
D2=540 E2=600
F2=PERCENTAGE(D2/E2*100)%
thanks.


The formula in F2 only has to be =D2/E2 and the cell formatted a
percentage
 
C

CellShocked

The formula in F2 only has to be =D2/E2 and the cell formatted as
percentage.

Format the cell as custom, and enter something like

## %

OR

##.# %


The space and the percent sign are TEXTUAL additions ('concatenations')
after the value gets the #.## or whatever formatting.
 

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

Top