Excel Format in K€
Solved
ella12_12
Posted messages
99
Status
Membre
-
bob -
bob -
Hello everyone,
I'm trying to create a custom number format in k€
For example: in one cell I have the number 1000 and I would like it to display as 1 k€
In another cell I have 1000000 and I would like it to display as 1 M€
It seems simple you might say, at least for the first example, you have to add a space before the quotes to divide by a thousand. Well, I’ve added spaces, but it adds spaces instead
I created the format:
# #.#0# " k€" is there an error? the division by 1000 isn't happening
Here’s the result: 1.000 k€
I’ve also created the format:
[>=1000000]0 "M€";[>=1000]0, "K€";0 € =
and also:
[>=1000000]0,,"M€";[>=1000]0,"K€";0 €
Here’s the result every time:
10000000,,M€
5000,K€
-$5000€
$500€
I would like it to display:
10 M€
5 k€
-5 k€
500 €
Is there an option that might not be active on my PC?
I'm trying to create a custom number format in k€
For example: in one cell I have the number 1000 and I would like it to display as 1 k€
In another cell I have 1000000 and I would like it to display as 1 M€
It seems simple you might say, at least for the first example, you have to add a space before the quotes to divide by a thousand. Well, I’ve added spaces, but it adds spaces instead
I created the format:
# #.#0# " k€" is there an error? the division by 1000 isn't happening
Here’s the result: 1.000 k€
I’ve also created the format:
[>=1000000]0 "M€";[>=1000]0, "K€";0 € =
and also:
[>=1000000]0,,"M€";[>=1000]0,"K€";0 €
Here’s the result every time:
10000000,,M€
5000,K€
-$5000€
$500€
I would like it to display:
10 M€
5 k€
-5 k€
500 €
Is there an option that might not be active on my PC?
Configuration: Windows Vista Internet Explorer 7.0
7 réponses
Hello,
Try this custom format [>=1000000]0.000000 "M€";[>=1000]0.000 "k€";0 €
You can adjust the number of decimal places but you must keep 2 spaces before "M€" and 1 space before "k€"
Try this custom format [>=1000000]0.000000 "M€";[>=1000]0.000 "k€";0 €
You can adjust the number of decimal places but you must keep 2 spaces before "M€" and 1 space before "k€"
golgoth22
Posted messages
2
Registration date
Status
Membre
Last intervention
Excellent! Works perfectly!
bob
Thank you for this tip.