In Google Sheets: How do I merge a range of a row (the header) with the range of each column into a single cell?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;







up vote
0
down vote

favorite
2












I want to have a cell with the header values, then a separator, then the values of a row, then a different separator.
And I want this to happen for each row while the header values remain the same.



Example:
example



Updated Example:
updated example



The solution I'm looking for should work for 50 columns







share|improve this question






















  • I added a better formula. By the other hand my addon is no publicly available. Please let me know if you preferred the formula or the add-on.
    – Rubén
    Aug 15 at 22:26
















up vote
0
down vote

favorite
2












I want to have a cell with the header values, then a separator, then the values of a row, then a different separator.
And I want this to happen for each row while the header values remain the same.



Example:
example



Updated Example:
updated example



The solution I'm looking for should work for 50 columns







share|improve this question






















  • I added a better formula. By the other hand my addon is no publicly available. Please let me know if you preferred the formula or the add-on.
    – Rubén
    Aug 15 at 22:26












up vote
0
down vote

favorite
2









up vote
0
down vote

favorite
2






2





I want to have a cell with the header values, then a separator, then the values of a row, then a different separator.
And I want this to happen for each row while the header values remain the same.



Example:
example



Updated Example:
updated example



The solution I'm looking for should work for 50 columns







share|improve this question














I want to have a cell with the header values, then a separator, then the values of a row, then a different separator.
And I want this to happen for each row while the header values remain the same.



Example:
example



Updated Example:
updated example



The solution I'm looking for should work for 50 columns









share|improve this question













share|improve this question




share|improve this question








edited Aug 9 at 23:24









Rubén

25.8k633155




25.8k633155










asked Aug 9 at 21:12









Kostas Gogas

367




367











  • I added a better formula. By the other hand my addon is no publicly available. Please let me know if you preferred the formula or the add-on.
    – Rubén
    Aug 15 at 22:26
















  • I added a better formula. By the other hand my addon is no publicly available. Please let me know if you preferred the formula or the add-on.
    – Rubén
    Aug 15 at 22:26















I added a better formula. By the other hand my addon is no publicly available. Please let me know if you preferred the formula or the add-on.
– Rubén
Aug 15 at 22:26




I added a better formula. By the other hand my addon is no publicly available. Please let me know if you preferred the formula or the add-on.
– Rubén
Aug 15 at 22:26










3 Answers
3






active

oldest

votes

















up vote
1
down vote



accepted










Formula



Initial formula



Formula for 50 columns



=ArrayFormula(JOIN(CHAR(10),$A$1:$AX$1&":"&$A2:$AX2))



Better formula



Formula for 50 columns and the required number of rows.



=ARRAY_CONSTRAIN(ARRAYFORMULA(REGEXREPLACE(TRANSPOSE(QUERY(TRANSPOSE($A$1:$AX$1&": "&$A2:$AX&CHAR(10)),,1000000)),"n$","")),COUNTA($A$2:$A),1)



Explanation



Description of formula parts



Initial formula




  • $A$1:$AX$1&":"&$A2:$AX2 creates a text value of headers and values separated by a colon.


  • CHAR(10) returns a carriage return (new line)


  • JOIN joins the values of array of second argument


  • ArrayFormula makes the formula able to make array operations on scalar functions and operators like &

Use instructions



Add the formula to a free cell on row 2 then fill down.



Notes



Using a cell to display row headers and cell values is fine for tables having few columns and not too lengthy values. On large tables, including those having 50 columns or having cells with lengthy values could lead you face some of the following problems:



  1. 50,000 characters limit

  2. The in-cell scroll bar for cells higher than the screen doesn't work

Also on sheets having lot of formulas and/or rows could make the spreadsheet slow or even non usable due to large recalcultation times



In cases that a formula like the one described above were not good, try Visor de Registros (Record Viewer), a Google Sheets free add-on developed by me. Currently it's unlisted but very soon I will send it to review by Google. It was published on August 14, 2018.





Note: The website is in Spanish as it's the first language of the firsts users that help me to test the add-on. I hope that the Google Sites built-in translate feature were good enough, but the add-on UI is available in English and Spanish.





Better formula



This formula is better because it doesn't require to fill down in order to get the desired result for the all the rows in the data range.



Instructions



Add the formula to a free cell on row 2



NOTE: The formula assumes that A2:A values are text and there aren't blanks on the data range.



Related Q's



  • In a Google Spreadsheet, how can I force a row to be a certain height?

Related Google editors help article



  • Use add-ons & Apps Script





share|improve this answer





























    up vote
    1
    down vote













    also, you can use =ARRAYFORMULA:



    • cell C2: =ARRAYFORMULA(IF(A2:A50<>""; $A$1&": "&A2:A50&CHAR(10)&$B$1&": "&B2:B50; ))



    UPDATE:



    =ARRAYFORMULA(IF(A2:A50 <> ""; $A$1 & ": " & A2:A50 & CHAR(10) &
    $B$1 & ": " & B2:B50 & CHAR(10) &
    $C$1 & ": " & C2:C50 & CHAR(10) &
    $D$1 & ": " & D2:D50 & CHAR(10) &
    $E$1 & ": " & E2:E50 & CHAR(10) &
    $F$1 & ": " & F2:F50 & CHAR(10) &
    $G$1 & ": " & G2:G50 & CHAR(10) ; ))





    share|improve this answer






















    • Excellent answer user0! Though, my bad, I said 50 rows while I meant 50 columns. I upvote nevertheless and hope I am within the guidelines. I will figure the rest out.
      – Kostas Gogas
      Aug 9 at 22:36

















    up vote
    1
    down vote













    you can try:



    =$A$1 & ": " & A2 & CHAR(10) & $B$1 & ": " & B2


    and then drag it down or use a shortcut:



    • select C2

    • hold SHIFT + ARROW DOWN as needed

    • and then press CTRL + ENTER

    update:



    =$A$1 & ": " & A2 & CHAR(10) &
    $B$1 & ": " & B2 & CHAR(10) &
    $C$1 & ": " & C2 & CHAR(10) &
    $D$1 & ": " & D2 & CHAR(10) &
    $E$1 & ": " & E2 & CHAR(10) &
    $F$1 & ": " & F2 & CHAR(10) &
    $G$1 & ": " & G2 & CHAR(10)





    share|improve this answer






















    • Thanks for the quick answer user0, but I need something for a range. Because the header is about 50 rows.
      – Kostas Gogas
      Aug 9 at 21:30










    • @KostasGogas shortcut won't help you?
      – user0
      Aug 9 at 21:38











    • but I need to put all the header range manually? $A$1 $B$1 $C$1...
      – Kostas Gogas
      Aug 9 at 21:46











    • @KostasGogas nope. those $ symbols mean that you locked the cell values so those will stay no matter you do
      – user0
      Aug 9 at 21:48










    • Could you give me the code for 50 rows? Because that's my problem. Thanks for your help so far.
      – Kostas Gogas
      Aug 9 at 21:57










    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "34"
    ;
    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',
    convertImagesToLinks: false,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    noCode: true, onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwebapps.stackexchange.com%2fquestions%2f119549%2fin-google-sheets-how-do-i-merge-a-range-of-a-row-the-header-with-the-range-of%23new-answer', 'question_page');

    );

    Post as a guest






























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote



    accepted










    Formula



    Initial formula



    Formula for 50 columns



    =ArrayFormula(JOIN(CHAR(10),$A$1:$AX$1&":"&$A2:$AX2))



    Better formula



    Formula for 50 columns and the required number of rows.



    =ARRAY_CONSTRAIN(ARRAYFORMULA(REGEXREPLACE(TRANSPOSE(QUERY(TRANSPOSE($A$1:$AX$1&": "&$A2:$AX&CHAR(10)),,1000000)),"n$","")),COUNTA($A$2:$A),1)



    Explanation



    Description of formula parts



    Initial formula




    • $A$1:$AX$1&":"&$A2:$AX2 creates a text value of headers and values separated by a colon.


    • CHAR(10) returns a carriage return (new line)


    • JOIN joins the values of array of second argument


    • ArrayFormula makes the formula able to make array operations on scalar functions and operators like &

    Use instructions



    Add the formula to a free cell on row 2 then fill down.



    Notes



    Using a cell to display row headers and cell values is fine for tables having few columns and not too lengthy values. On large tables, including those having 50 columns or having cells with lengthy values could lead you face some of the following problems:



    1. 50,000 characters limit

    2. The in-cell scroll bar for cells higher than the screen doesn't work

    Also on sheets having lot of formulas and/or rows could make the spreadsheet slow or even non usable due to large recalcultation times



    In cases that a formula like the one described above were not good, try Visor de Registros (Record Viewer), a Google Sheets free add-on developed by me. Currently it's unlisted but very soon I will send it to review by Google. It was published on August 14, 2018.





    Note: The website is in Spanish as it's the first language of the firsts users that help me to test the add-on. I hope that the Google Sites built-in translate feature were good enough, but the add-on UI is available in English and Spanish.





    Better formula



    This formula is better because it doesn't require to fill down in order to get the desired result for the all the rows in the data range.



    Instructions



    Add the formula to a free cell on row 2



    NOTE: The formula assumes that A2:A values are text and there aren't blanks on the data range.



    Related Q's



    • In a Google Spreadsheet, how can I force a row to be a certain height?

    Related Google editors help article



    • Use add-ons & Apps Script





    share|improve this answer


























      up vote
      1
      down vote



      accepted










      Formula



      Initial formula



      Formula for 50 columns



      =ArrayFormula(JOIN(CHAR(10),$A$1:$AX$1&":"&$A2:$AX2))



      Better formula



      Formula for 50 columns and the required number of rows.



      =ARRAY_CONSTRAIN(ARRAYFORMULA(REGEXREPLACE(TRANSPOSE(QUERY(TRANSPOSE($A$1:$AX$1&": "&$A2:$AX&CHAR(10)),,1000000)),"n$","")),COUNTA($A$2:$A),1)



      Explanation



      Description of formula parts



      Initial formula




      • $A$1:$AX$1&":"&$A2:$AX2 creates a text value of headers and values separated by a colon.


      • CHAR(10) returns a carriage return (new line)


      • JOIN joins the values of array of second argument


      • ArrayFormula makes the formula able to make array operations on scalar functions and operators like &

      Use instructions



      Add the formula to a free cell on row 2 then fill down.



      Notes



      Using a cell to display row headers and cell values is fine for tables having few columns and not too lengthy values. On large tables, including those having 50 columns or having cells with lengthy values could lead you face some of the following problems:



      1. 50,000 characters limit

      2. The in-cell scroll bar for cells higher than the screen doesn't work

      Also on sheets having lot of formulas and/or rows could make the spreadsheet slow or even non usable due to large recalcultation times



      In cases that a formula like the one described above were not good, try Visor de Registros (Record Viewer), a Google Sheets free add-on developed by me. Currently it's unlisted but very soon I will send it to review by Google. It was published on August 14, 2018.





      Note: The website is in Spanish as it's the first language of the firsts users that help me to test the add-on. I hope that the Google Sites built-in translate feature were good enough, but the add-on UI is available in English and Spanish.





      Better formula



      This formula is better because it doesn't require to fill down in order to get the desired result for the all the rows in the data range.



      Instructions



      Add the formula to a free cell on row 2



      NOTE: The formula assumes that A2:A values are text and there aren't blanks on the data range.



      Related Q's



      • In a Google Spreadsheet, how can I force a row to be a certain height?

      Related Google editors help article



      • Use add-ons & Apps Script





      share|improve this answer
























        up vote
        1
        down vote



        accepted







        up vote
        1
        down vote



        accepted






        Formula



        Initial formula



        Formula for 50 columns



        =ArrayFormula(JOIN(CHAR(10),$A$1:$AX$1&":"&$A2:$AX2))



        Better formula



        Formula for 50 columns and the required number of rows.



        =ARRAY_CONSTRAIN(ARRAYFORMULA(REGEXREPLACE(TRANSPOSE(QUERY(TRANSPOSE($A$1:$AX$1&": "&$A2:$AX&CHAR(10)),,1000000)),"n$","")),COUNTA($A$2:$A),1)



        Explanation



        Description of formula parts



        Initial formula




        • $A$1:$AX$1&":"&$A2:$AX2 creates a text value of headers and values separated by a colon.


        • CHAR(10) returns a carriage return (new line)


        • JOIN joins the values of array of second argument


        • ArrayFormula makes the formula able to make array operations on scalar functions and operators like &

        Use instructions



        Add the formula to a free cell on row 2 then fill down.



        Notes



        Using a cell to display row headers and cell values is fine for tables having few columns and not too lengthy values. On large tables, including those having 50 columns or having cells with lengthy values could lead you face some of the following problems:



        1. 50,000 characters limit

        2. The in-cell scroll bar for cells higher than the screen doesn't work

        Also on sheets having lot of formulas and/or rows could make the spreadsheet slow or even non usable due to large recalcultation times



        In cases that a formula like the one described above were not good, try Visor de Registros (Record Viewer), a Google Sheets free add-on developed by me. Currently it's unlisted but very soon I will send it to review by Google. It was published on August 14, 2018.





        Note: The website is in Spanish as it's the first language of the firsts users that help me to test the add-on. I hope that the Google Sites built-in translate feature were good enough, but the add-on UI is available in English and Spanish.





        Better formula



        This formula is better because it doesn't require to fill down in order to get the desired result for the all the rows in the data range.



        Instructions



        Add the formula to a free cell on row 2



        NOTE: The formula assumes that A2:A values are text and there aren't blanks on the data range.



        Related Q's



        • In a Google Spreadsheet, how can I force a row to be a certain height?

        Related Google editors help article



        • Use add-ons & Apps Script





        share|improve this answer














        Formula



        Initial formula



        Formula for 50 columns



        =ArrayFormula(JOIN(CHAR(10),$A$1:$AX$1&":"&$A2:$AX2))



        Better formula



        Formula for 50 columns and the required number of rows.



        =ARRAY_CONSTRAIN(ARRAYFORMULA(REGEXREPLACE(TRANSPOSE(QUERY(TRANSPOSE($A$1:$AX$1&": "&$A2:$AX&CHAR(10)),,1000000)),"n$","")),COUNTA($A$2:$A),1)



        Explanation



        Description of formula parts



        Initial formula




        • $A$1:$AX$1&":"&$A2:$AX2 creates a text value of headers and values separated by a colon.


        • CHAR(10) returns a carriage return (new line)


        • JOIN joins the values of array of second argument


        • ArrayFormula makes the formula able to make array operations on scalar functions and operators like &

        Use instructions



        Add the formula to a free cell on row 2 then fill down.



        Notes



        Using a cell to display row headers and cell values is fine for tables having few columns and not too lengthy values. On large tables, including those having 50 columns or having cells with lengthy values could lead you face some of the following problems:



        1. 50,000 characters limit

        2. The in-cell scroll bar for cells higher than the screen doesn't work

        Also on sheets having lot of formulas and/or rows could make the spreadsheet slow or even non usable due to large recalcultation times



        In cases that a formula like the one described above were not good, try Visor de Registros (Record Viewer), a Google Sheets free add-on developed by me. Currently it's unlisted but very soon I will send it to review by Google. It was published on August 14, 2018.





        Note: The website is in Spanish as it's the first language of the firsts users that help me to test the add-on. I hope that the Google Sites built-in translate feature were good enough, but the add-on UI is available in English and Spanish.





        Better formula



        This formula is better because it doesn't require to fill down in order to get the desired result for the all the rows in the data range.



        Instructions



        Add the formula to a free cell on row 2



        NOTE: The formula assumes that A2:A values are text and there aren't blanks on the data range.



        Related Q's



        • In a Google Spreadsheet, how can I force a row to be a certain height?

        Related Google editors help article



        • Use add-ons & Apps Script






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Aug 16 at 1:45

























        answered Aug 9 at 23:20









        Rubén

        25.8k633155




        25.8k633155






















            up vote
            1
            down vote













            also, you can use =ARRAYFORMULA:



            • cell C2: =ARRAYFORMULA(IF(A2:A50<>""; $A$1&": "&A2:A50&CHAR(10)&$B$1&": "&B2:B50; ))



            UPDATE:



            =ARRAYFORMULA(IF(A2:A50 <> ""; $A$1 & ": " & A2:A50 & CHAR(10) &
            $B$1 & ": " & B2:B50 & CHAR(10) &
            $C$1 & ": " & C2:C50 & CHAR(10) &
            $D$1 & ": " & D2:D50 & CHAR(10) &
            $E$1 & ": " & E2:E50 & CHAR(10) &
            $F$1 & ": " & F2:F50 & CHAR(10) &
            $G$1 & ": " & G2:G50 & CHAR(10) ; ))





            share|improve this answer






















            • Excellent answer user0! Though, my bad, I said 50 rows while I meant 50 columns. I upvote nevertheless and hope I am within the guidelines. I will figure the rest out.
              – Kostas Gogas
              Aug 9 at 22:36














            up vote
            1
            down vote













            also, you can use =ARRAYFORMULA:



            • cell C2: =ARRAYFORMULA(IF(A2:A50<>""; $A$1&": "&A2:A50&CHAR(10)&$B$1&": "&B2:B50; ))



            UPDATE:



            =ARRAYFORMULA(IF(A2:A50 <> ""; $A$1 & ": " & A2:A50 & CHAR(10) &
            $B$1 & ": " & B2:B50 & CHAR(10) &
            $C$1 & ": " & C2:C50 & CHAR(10) &
            $D$1 & ": " & D2:D50 & CHAR(10) &
            $E$1 & ": " & E2:E50 & CHAR(10) &
            $F$1 & ": " & F2:F50 & CHAR(10) &
            $G$1 & ": " & G2:G50 & CHAR(10) ; ))





            share|improve this answer






















            • Excellent answer user0! Though, my bad, I said 50 rows while I meant 50 columns. I upvote nevertheless and hope I am within the guidelines. I will figure the rest out.
              – Kostas Gogas
              Aug 9 at 22:36












            up vote
            1
            down vote










            up vote
            1
            down vote









            also, you can use =ARRAYFORMULA:



            • cell C2: =ARRAYFORMULA(IF(A2:A50<>""; $A$1&": "&A2:A50&CHAR(10)&$B$1&": "&B2:B50; ))



            UPDATE:



            =ARRAYFORMULA(IF(A2:A50 <> ""; $A$1 & ": " & A2:A50 & CHAR(10) &
            $B$1 & ": " & B2:B50 & CHAR(10) &
            $C$1 & ": " & C2:C50 & CHAR(10) &
            $D$1 & ": " & D2:D50 & CHAR(10) &
            $E$1 & ": " & E2:E50 & CHAR(10) &
            $F$1 & ": " & F2:F50 & CHAR(10) &
            $G$1 & ": " & G2:G50 & CHAR(10) ; ))





            share|improve this answer














            also, you can use =ARRAYFORMULA:



            • cell C2: =ARRAYFORMULA(IF(A2:A50<>""; $A$1&": "&A2:A50&CHAR(10)&$B$1&": "&B2:B50; ))



            UPDATE:



            =ARRAYFORMULA(IF(A2:A50 <> ""; $A$1 & ": " & A2:A50 & CHAR(10) &
            $B$1 & ": " & B2:B50 & CHAR(10) &
            $C$1 & ": " & C2:C50 & CHAR(10) &
            $D$1 & ": " & D2:D50 & CHAR(10) &
            $E$1 & ": " & E2:E50 & CHAR(10) &
            $F$1 & ": " & F2:F50 & CHAR(10) &
            $G$1 & ": " & G2:G50 & CHAR(10) ; ))






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Aug 9 at 22:37

























            answered Aug 9 at 22:22









            user0

            3,3893722




            3,3893722











            • Excellent answer user0! Though, my bad, I said 50 rows while I meant 50 columns. I upvote nevertheless and hope I am within the guidelines. I will figure the rest out.
              – Kostas Gogas
              Aug 9 at 22:36
















            • Excellent answer user0! Though, my bad, I said 50 rows while I meant 50 columns. I upvote nevertheless and hope I am within the guidelines. I will figure the rest out.
              – Kostas Gogas
              Aug 9 at 22:36















            Excellent answer user0! Though, my bad, I said 50 rows while I meant 50 columns. I upvote nevertheless and hope I am within the guidelines. I will figure the rest out.
            – Kostas Gogas
            Aug 9 at 22:36




            Excellent answer user0! Though, my bad, I said 50 rows while I meant 50 columns. I upvote nevertheless and hope I am within the guidelines. I will figure the rest out.
            – Kostas Gogas
            Aug 9 at 22:36










            up vote
            1
            down vote













            you can try:



            =$A$1 & ": " & A2 & CHAR(10) & $B$1 & ": " & B2


            and then drag it down or use a shortcut:



            • select C2

            • hold SHIFT + ARROW DOWN as needed

            • and then press CTRL + ENTER

            update:



            =$A$1 & ": " & A2 & CHAR(10) &
            $B$1 & ": " & B2 & CHAR(10) &
            $C$1 & ": " & C2 & CHAR(10) &
            $D$1 & ": " & D2 & CHAR(10) &
            $E$1 & ": " & E2 & CHAR(10) &
            $F$1 & ": " & F2 & CHAR(10) &
            $G$1 & ": " & G2 & CHAR(10)





            share|improve this answer






















            • Thanks for the quick answer user0, but I need something for a range. Because the header is about 50 rows.
              – Kostas Gogas
              Aug 9 at 21:30










            • @KostasGogas shortcut won't help you?
              – user0
              Aug 9 at 21:38











            • but I need to put all the header range manually? $A$1 $B$1 $C$1...
              – Kostas Gogas
              Aug 9 at 21:46











            • @KostasGogas nope. those $ symbols mean that you locked the cell values so those will stay no matter you do
              – user0
              Aug 9 at 21:48










            • Could you give me the code for 50 rows? Because that's my problem. Thanks for your help so far.
              – Kostas Gogas
              Aug 9 at 21:57














            up vote
            1
            down vote













            you can try:



            =$A$1 & ": " & A2 & CHAR(10) & $B$1 & ": " & B2


            and then drag it down or use a shortcut:



            • select C2

            • hold SHIFT + ARROW DOWN as needed

            • and then press CTRL + ENTER

            update:



            =$A$1 & ": " & A2 & CHAR(10) &
            $B$1 & ": " & B2 & CHAR(10) &
            $C$1 & ": " & C2 & CHAR(10) &
            $D$1 & ": " & D2 & CHAR(10) &
            $E$1 & ": " & E2 & CHAR(10) &
            $F$1 & ": " & F2 & CHAR(10) &
            $G$1 & ": " & G2 & CHAR(10)





            share|improve this answer






















            • Thanks for the quick answer user0, but I need something for a range. Because the header is about 50 rows.
              – Kostas Gogas
              Aug 9 at 21:30










            • @KostasGogas shortcut won't help you?
              – user0
              Aug 9 at 21:38











            • but I need to put all the header range manually? $A$1 $B$1 $C$1...
              – Kostas Gogas
              Aug 9 at 21:46











            • @KostasGogas nope. those $ symbols mean that you locked the cell values so those will stay no matter you do
              – user0
              Aug 9 at 21:48










            • Could you give me the code for 50 rows? Because that's my problem. Thanks for your help so far.
              – Kostas Gogas
              Aug 9 at 21:57












            up vote
            1
            down vote










            up vote
            1
            down vote









            you can try:



            =$A$1 & ": " & A2 & CHAR(10) & $B$1 & ": " & B2


            and then drag it down or use a shortcut:



            • select C2

            • hold SHIFT + ARROW DOWN as needed

            • and then press CTRL + ENTER

            update:



            =$A$1 & ": " & A2 & CHAR(10) &
            $B$1 & ": " & B2 & CHAR(10) &
            $C$1 & ": " & C2 & CHAR(10) &
            $D$1 & ": " & D2 & CHAR(10) &
            $E$1 & ": " & E2 & CHAR(10) &
            $F$1 & ": " & F2 & CHAR(10) &
            $G$1 & ": " & G2 & CHAR(10)





            share|improve this answer














            you can try:



            =$A$1 & ": " & A2 & CHAR(10) & $B$1 & ": " & B2


            and then drag it down or use a shortcut:



            • select C2

            • hold SHIFT + ARROW DOWN as needed

            • and then press CTRL + ENTER

            update:



            =$A$1 & ": " & A2 & CHAR(10) &
            $B$1 & ": " & B2 & CHAR(10) &
            $C$1 & ": " & C2 & CHAR(10) &
            $D$1 & ": " & D2 & CHAR(10) &
            $E$1 & ": " & E2 & CHAR(10) &
            $F$1 & ": " & F2 & CHAR(10) &
            $G$1 & ": " & G2 & CHAR(10)






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Aug 9 at 22:41

























            answered Aug 9 at 21:20









            user0

            3,3893722




            3,3893722











            • Thanks for the quick answer user0, but I need something for a range. Because the header is about 50 rows.
              – Kostas Gogas
              Aug 9 at 21:30










            • @KostasGogas shortcut won't help you?
              – user0
              Aug 9 at 21:38











            • but I need to put all the header range manually? $A$1 $B$1 $C$1...
              – Kostas Gogas
              Aug 9 at 21:46











            • @KostasGogas nope. those $ symbols mean that you locked the cell values so those will stay no matter you do
              – user0
              Aug 9 at 21:48










            • Could you give me the code for 50 rows? Because that's my problem. Thanks for your help so far.
              – Kostas Gogas
              Aug 9 at 21:57
















            • Thanks for the quick answer user0, but I need something for a range. Because the header is about 50 rows.
              – Kostas Gogas
              Aug 9 at 21:30










            • @KostasGogas shortcut won't help you?
              – user0
              Aug 9 at 21:38











            • but I need to put all the header range manually? $A$1 $B$1 $C$1...
              – Kostas Gogas
              Aug 9 at 21:46











            • @KostasGogas nope. those $ symbols mean that you locked the cell values so those will stay no matter you do
              – user0
              Aug 9 at 21:48










            • Could you give me the code for 50 rows? Because that's my problem. Thanks for your help so far.
              – Kostas Gogas
              Aug 9 at 21:57















            Thanks for the quick answer user0, but I need something for a range. Because the header is about 50 rows.
            – Kostas Gogas
            Aug 9 at 21:30




            Thanks for the quick answer user0, but I need something for a range. Because the header is about 50 rows.
            – Kostas Gogas
            Aug 9 at 21:30












            @KostasGogas shortcut won't help you?
            – user0
            Aug 9 at 21:38





            @KostasGogas shortcut won't help you?
            – user0
            Aug 9 at 21:38













            but I need to put all the header range manually? $A$1 $B$1 $C$1...
            – Kostas Gogas
            Aug 9 at 21:46





            but I need to put all the header range manually? $A$1 $B$1 $C$1...
            – Kostas Gogas
            Aug 9 at 21:46













            @KostasGogas nope. those $ symbols mean that you locked the cell values so those will stay no matter you do
            – user0
            Aug 9 at 21:48




            @KostasGogas nope. those $ symbols mean that you locked the cell values so those will stay no matter you do
            – user0
            Aug 9 at 21:48












            Could you give me the code for 50 rows? Because that's my problem. Thanks for your help so far.
            – Kostas Gogas
            Aug 9 at 21:57




            Could you give me the code for 50 rows? Because that's my problem. Thanks for your help so far.
            – Kostas Gogas
            Aug 9 at 21:57

















             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwebapps.stackexchange.com%2fquestions%2f119549%2fin-google-sheets-how-do-i-merge-a-range-of-a-row-the-header-with-the-range-of%23new-answer', 'question_page');

            );

            Post as a guest













































































            Comments

            Popular posts from this blog

            Long meetings (6-7 hours a day): Being “babysat” by supervisor

            Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

            Confectionery