formatting a percentage in a cell

P

pat67

I am trying to show this in a cell: 83% Complete

The 83% is from a vlookup and I concatenate with the word "Complete".
Problem is that when i do this the % becomes the actual value
0.832458... How can i make it so it stays a percentage?

Thanks
 
R

Ron Rosenfeld

I am trying to show this in a cell: 83% Complete

The 83% is from a vlookup and I concatenate with the word "Complete".
Problem is that when i do this the % becomes the actual value
0.832458... How can i make it so it stays a percentage?

Thanks

Something like:

=text(vlookup_result, "0%") & " Complete"

or, in the cell with the Vlookup formula, just Custom Format the cell as

Format/Numbers/Custom
Type: 0%" Complete"

This latter has the possible advantage that the contents of the cell is still a number.
 
P

pat67

Something like:

=text(vlookup_result, "0%") & " Complete"

or, in the cell with the Vlookup formula, just Custom Format the cell as

Format/Numbers/Custom
Type:  0%" Complete"

This latter has the possible advantage that the contents of the cell is still a number.

I actually did it like your first suggestion. Thanks
 

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