How to display percentage with 0 decimal point by Text function?

G

Guest

Does anyone know how to use Text function to display percentage with 0
decimal point? such as
0.5 displays in cell A1, in cell B1, how to write the code Text(A1, ???) in
order to display 50% in cell B1?
Thank for any suggestions
Eric
 
R

Ron Rosenfeld

Does anyone know how to use Text function to display percentage with 0
decimal point? such as
0.5 displays in cell A1, in cell B1, how to write the code Text(A1, ???) in
order to display 50% in cell B1?
Thank for any suggestions
Eric


=TEXT(A1,"0%")
--ron
 
J

JE McGimpsey

One way:

B1: =TEXT(A1,"0%")

alternatively,

B1: =A1

format B1 as a percentage with no decimal points.
 
B

Bernard Liengme

Why use TEXT? In B1 enter =A1 and then format B1 as percent with zero
decimals.
But if you must: =TEXT(A1,"0%")
best wishes
 
D

David Biddulph

One reason for using TEXT() is if the OP wants to export data to another
application, such as through mail merge to MS Word.
 

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