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!










share|improve this question
























  • 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















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!










share|improve this question
























  • 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













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!










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 4 at 10:54









PeterH

3,37832246




3,37832246










asked Dec 4 at 10:48









L Harris

61




61












  • 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


















  • 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
















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










2 Answers
2






active

oldest

votes

















up vote
1
down vote














  1. 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).

  2. Go back to where you wish to have the formatting and enclose the reference (C52) in a call to TEXT() as in:


...& TEXT(<expression>,"<formatting code>") & ...



(e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ... )






share|improve this answer























  • Thank-you for this, the TEXT function what was needed, very helpful.
    – L Harris
    Dec 5 at 11:14


















up vote
0
down vote













You can use the TEXT function for this:



="This amount is £"&TEXT(C52,"00,000")&" in total"





share|improve this answer





















    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
    });


    }
    });














    draft saved

    draft discarded


















    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














    1. 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).

    2. Go back to where you wish to have the formatting and enclose the reference (C52) in a call to TEXT() as in:


    ...& TEXT(<expression>,"<formatting code>") & ...



    (e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ... )






    share|improve this answer























    • Thank-you for this, the TEXT function what was needed, very helpful.
      – L Harris
      Dec 5 at 11:14















    up vote
    1
    down vote














    1. 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).

    2. Go back to where you wish to have the formatting and enclose the reference (C52) in a call to TEXT() as in:


    ...& TEXT(<expression>,"<formatting code>") & ...



    (e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ... )






    share|improve this answer























    • Thank-you for this, the TEXT function what was needed, very helpful.
      – L Harris
      Dec 5 at 11:14













    up vote
    1
    down vote










    up vote
    1
    down vote










    1. 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).

    2. Go back to where you wish to have the formatting and enclose the reference (C52) in a call to TEXT() as in:


    ...& TEXT(<expression>,"<formatting code>") & ...



    (e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ... )






    share|improve this answer















    1. 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).

    2. Go back to where you wish to have the formatting and enclose the reference (C52) in a call to TEXT() as in:


    ...& TEXT(<expression>,"<formatting code>") & ...



    (e.g. ...& TEXT(C52,"#,##0.00 [$SEK];[RED]-#,##0.00 [$SEK]") & ... )







    share|improve this answer














    share|improve this answer



    share|improve this answer








    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


















    • 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












    up vote
    0
    down vote













    You can use the TEXT function for this:



    ="This amount is £"&TEXT(C52,"00,000")&" in total"





    share|improve this answer

























      up vote
      0
      down vote













      You can use the TEXT function for this:



      ="This amount is £"&TEXT(C52,"00,000")&" in total"





      share|improve this answer























        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"





        share|improve this answer












        You can use the TEXT function for this:



        ="This amount is £"&TEXT(C52,"00,000")&" in total"






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 4 at 11:00









        PeterH

        3,37832246




        3,37832246






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            If I really need a card on my start hand, how many mulligans make sense? [duplicate]

            Alcedinidae

            Can an atomic nucleus contain both particles and antiparticles? [duplicate]