Excel - How to insert commas into a £ amount when cell is copied
up vote
1
down vote
favorite
I have a body of text that is copied from another cell which has a currency amount taken from another cell eg
="This amount is "&C52&" in total"
where C51 - £50,000. However, this comes across as £50000 regardless of what the end cell is formatted as.
Is there a way to show this comma separation?
Thank-you!
microsoft-excel
add a comment |
up vote
1
down vote
favorite
I have a body of text that is copied from another cell which has a currency amount taken from another cell eg
="This amount is "&C52&" in total"
where C51 - £50,000. However, this comes across as £50000 regardless of what the end cell is formatted as.
Is there a way to show this comma separation?
Thank-you!
microsoft-excel
Have a look onTEXT
function.
– Máté Juhász
Dec 4 at 10:58
Thank-you! This works perfectly.
– L Harris
Dec 5 at 11:13
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a body of text that is copied from another cell which has a currency amount taken from another cell eg
="This amount is "&C52&" in total"
where C51 - £50,000. However, this comes across as £50000 regardless of what the end cell is formatted as.
Is there a way to show this comma separation?
Thank-you!
microsoft-excel
I have a body of text that is copied from another cell which has a currency amount taken from another cell eg
="This amount is "&C52&" in total"
where C51 - £50,000. However, this comes across as £50000 regardless of what the end cell is formatted as.
Is there a way to show this comma separation?
Thank-you!
microsoft-excel
microsoft-excel
edited Dec 4 at 10:54
PeterH
3,37832246
3,37832246
asked Dec 4 at 10:48
L Harris
61
61
Have a look onTEXT
function.
– Máté Juhász
Dec 4 at 10:58
Thank-you! This works perfectly.
– L Harris
Dec 5 at 11:13
add a comment |
Have a look onTEXT
function.
– Máté Juhász
Dec 4 at 10:58
Thank-you! This works perfectly.
– L Harris
Dec 5 at 11:13
Have a look on
TEXT
function.– Máté Juhász
Dec 4 at 10:58
Have a look on
TEXT
function.– Máté Juhász
Dec 4 at 10:58
Thank-you! This works perfectly.
– L Harris
Dec 5 at 11:13
Thank-you! This works perfectly.
– L Harris
Dec 5 at 11:13
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
- Check the formatting of the original cell (hold CTRL and hit 1 to see the dialogue), depending on software version you might need to click on "Custom" (Excel) or "User defined" (Libreoffice) to see the actual formatting definition so that you can COPY IT (Mark the text, hold CTRL and hit C).
- Go back to where you wish to have the formatting and enclose the reference (
C52
) in a call toTEXT()
as in:
...& TEXT(<expression>,"<formatting code>") & ...
(e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ...
)
Thank-you for this, the TEXT function what was needed, very helpful.
– L Harris
Dec 5 at 11:14
add a comment |
up vote
0
down vote
You can use the TEXT function for this:
="This amount is £"&TEXT(C52,"00,000")&" in total"
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1380658%2fexcel-how-to-insert-commas-into-a-%25c2%25a3-amount-when-cell-is-copied%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
- Check the formatting of the original cell (hold CTRL and hit 1 to see the dialogue), depending on software version you might need to click on "Custom" (Excel) or "User defined" (Libreoffice) to see the actual formatting definition so that you can COPY IT (Mark the text, hold CTRL and hit C).
- Go back to where you wish to have the formatting and enclose the reference (
C52
) in a call toTEXT()
as in:
...& TEXT(<expression>,"<formatting code>") & ...
(e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ...
)
Thank-you for this, the TEXT function what was needed, very helpful.
– L Harris
Dec 5 at 11:14
add a comment |
up vote
1
down vote
- Check the formatting of the original cell (hold CTRL and hit 1 to see the dialogue), depending on software version you might need to click on "Custom" (Excel) or "User defined" (Libreoffice) to see the actual formatting definition so that you can COPY IT (Mark the text, hold CTRL and hit C).
- Go back to where you wish to have the formatting and enclose the reference (
C52
) in a call toTEXT()
as in:
...& TEXT(<expression>,"<formatting code>") & ...
(e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ...
)
Thank-you for this, the TEXT function what was needed, very helpful.
– L Harris
Dec 5 at 11:14
add a comment |
up vote
1
down vote
up vote
1
down vote
- Check the formatting of the original cell (hold CTRL and hit 1 to see the dialogue), depending on software version you might need to click on "Custom" (Excel) or "User defined" (Libreoffice) to see the actual formatting definition so that you can COPY IT (Mark the text, hold CTRL and hit C).
- Go back to where you wish to have the formatting and enclose the reference (
C52
) in a call toTEXT()
as in:
...& TEXT(<expression>,"<formatting code>") & ...
(e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ...
)
- Check the formatting of the original cell (hold CTRL and hit 1 to see the dialogue), depending on software version you might need to click on "Custom" (Excel) or "User defined" (Libreoffice) to see the actual formatting definition so that you can COPY IT (Mark the text, hold CTRL and hit C).
- Go back to where you wish to have the formatting and enclose the reference (
C52
) in a call toTEXT()
as in:
...& TEXT(<expression>,"<formatting code>") & ...
(e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ...
)
edited Dec 4 at 11:16
answered Dec 4 at 11:00
Hannu
3,9621925
3,9621925
Thank-you for this, the TEXT function what was needed, very helpful.
– L Harris
Dec 5 at 11:14
add a comment |
Thank-you for this, the TEXT function what was needed, very helpful.
– L Harris
Dec 5 at 11:14
Thank-you for this, the TEXT function what was needed, very helpful.
– L Harris
Dec 5 at 11:14
Thank-you for this, the TEXT function what was needed, very helpful.
– L Harris
Dec 5 at 11:14
add a comment |
up vote
0
down vote
You can use the TEXT function for this:
="This amount is £"&TEXT(C52,"00,000")&" in total"
add a comment |
up vote
0
down vote
You can use the TEXT function for this:
="This amount is £"&TEXT(C52,"00,000")&" in total"
add a comment |
up vote
0
down vote
up vote
0
down vote
You can use the TEXT function for this:
="This amount is £"&TEXT(C52,"00,000")&" in total"
You can use the TEXT function for this:
="This amount is £"&TEXT(C52,"00,000")&" in total"
answered Dec 4 at 11:00
PeterH
3,37832246
3,37832246
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1380658%2fexcel-how-to-insert-commas-into-a-%25c2%25a3-amount-when-cell-is-copied%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have a look on
TEXT
function.– Máté Juhász
Dec 4 at 10:58
Thank-you! This works perfectly.
– L Harris
Dec 5 at 11:13