Excel Round

T

Terri

Hi: I need to round a formula from a decimal to a percent here is the
foemula,=VLOOKUP(D10,Customers,9)&"/"&VLOOKUP(D10,Customers,10,FALSE)&"
"&VLOOKUP(D10,Customers,11,FALSE)&" "&VLOOKUP(D10,Customers,12,FALSE) I need
to put the percent in the first vlookup it is now showing as a decimal but I
want to round it to 2 decimal places and have a percent sign. any help would
be greatly appriciated.
 
S

Spiky

Replace this term: VLOOKUP(D10,Customers,9)
with this: TEXT(ROUND(VLOOKUP(D10,Customers,9),2),"0%")
--


I think you mean:
TEXT(ROUND(VLOOKUP(D10,Customers,9),2),"0.00%")
 
S

Spiky

Replace this term: VLOOKUP(D10,Customers,9)
with this: TEXT(ROUND(VLOOKUP(D10,Customers,9),2),"0%")
--

Shoot! Didn't finish that off properly. Ignore my first post.

2nd try, if the OP wants a percent with 2 decimal places:
TEXT(ROUND(VLOOKUP(D10,Customers,9),4),"0.00%")
 

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