Display thousand percent in MS-Excel

2

I have this number:

0.0065

If I format it as percentage, I obtain:

0.65%

There is any way to get it with a 'thousand percent' symbol?

6.5 ‰

tomelin5

Posted 2016-01-20T15:47:44.157

Reputation: 75

EDIT: I want the cell remain usable as number. Something like =CONCAT(A1*1000, '‰') will be text and not useful for any further operation. – tomelin5 – 2016-01-20T16:39:48.850

Answers

1

I don't think you will be able to create a custom format to change the display. You can use this formula though.

=TEXT(B2*1000,"##0.0‰")

Edit: To allow use of the text value you can use the NumberValue() function. Assuming that the Text() function above is in cell D2:

=NUMBERVALUE(LEFT(D2,LEN(D2)-1))

This will drop the ‰ and treat the remaining number as numeric.

It is a little cumbersome but it works.

B540Glenn

Posted 2016-01-20T15:47:44.157

Reputation: 1 045

To return it to its numerical value, don't you need to divide by 1000? – fixer1234 – 2016-01-20T20:21:11.093

Fixer: Yes, you would. My example was to demonstrate the method to get it back to a numeric value. – B540Glenn – 2016-01-20T20:29:40.907

You can use a text format to change the display as long as you are willing to accept that the actual numeric value of the cell will be 1000* greater than the actual ratio. See this answer

– JosiahYoder-deactive except.. – 2017-07-11T13:56:51.757

2

See this post at http://chandoo.org/wp/2012/01/31/custom-number-formats-multiply-divide-by-any-power-of-10/

Using a combination of the multiply by 1,000 formatting, and ALT+0137 character to add the mille symbol should get you on the right track.

For example, I was able to get ##.0,"‰",%%% to work in Excel 2010.

Remember to wrap text as referred to in the post linked to. Depending on the text in other cells, you might run into the issue of not being able to hide the extra %%% signs though. Others cells referring back to this reformatted cell should be formatted in your normal Number format to display correctly (ie without symbols etc).

Tanya

Posted 2016-01-20T15:47:44.157

Reputation: 1 400

1

The universal command for the "Per Mille" symbol () on Windows is ALT+0137.

For OS X, it is SHIFT+OPTION+R.

Source.

nicholas79171

Posted 2016-01-20T15:47:44.157

Reputation: 119

Yes, I can put the symbol. But I want that the number as 6.5‰ , via formatting, remaining 0.0065 internally. – tomelin5 – 2016-01-20T16:18:12.480

While useful this does not actually answer the original question. – Burgi – 2016-01-21T08:44:22.393