Consolidate Data From Multiple Sheets 📝 With ONE FORMULA Using Google Sheets

Поделиться
HTML-код
  • Опубликовано: 6 сен 2022
  • Learn how to bring the data from four tabs into one master sheet. We do all of this using the QUERY function.
    See more here on QUERY here:
    sheetshelp.com/query/
    See the origin of this formula in the "Writing the query" section here:
    sheetshelp.com/formulas-for-n...
    #shorts #googlesheets #spreadsheet
  • НаукаНаука

Комментарии • 42

  • @KimaniWebb
    @KimaniWebb 8 месяцев назад +1

    Great video! I appreciate that it was so concise and the visual of the formula bar helped so much.

    • @SheetsHelp
      @SheetsHelp  8 месяцев назад +1

      I appreciate the feedback. I'll have to do that more often.

  • @user-ye3wm9zc8d
    @user-ye3wm9zc8d 6 дней назад

    Thank you!

  • @bhaveshthaker2035
    @bhaveshthaker2035 3 месяца назад

    Amazing... 👍

  • @tadeoriganti
    @tadeoriganti 8 месяцев назад

    Holy cow! Thanks a lot! ❤

  • @arusha1981ify
    @arusha1981ify Год назад +1

    You're amazing

  • @imotoshiz
    @imotoshiz 5 месяцев назад +1

    Hi- all spreadsheets had the same columns and headers name but can I do these where the 3 first columns of each tabs have the same headers but the other columns are not. Example tab 1,2,3 column A is country, b, state and c city but then each columns in each tab after column have headers with information and I want to combine all of this into one .

    • @SheetsHelp
      @SheetsHelp  5 месяцев назад

      I wouldn’t recommend it. You’ll have a hard time getting meaningful output.

  • @happilydecluttered
    @happilydecluttered 3 месяца назад

    Can you do this with a range of sheets? I have new sheets added every time I have a new client and I want the new info to continually populate in my Summary sheet. THANKS!

    • @SheetsHelp
      @SheetsHelp  3 месяца назад +1

      I don't think so. That would be something you have to do with Apps Script.

    • @happilydecluttered
      @happilydecluttered 3 месяца назад

      @@SheetsHelp Thanks for letting me know!

  • @cgbeautyink
    @cgbeautyink Год назад +2

    Will this automatically update when cells are added or manipulated on other tabs?

    • @SheetsHelp
      @SheetsHelp  Год назад +2

      Yes, it shows a live version of the data.

  • @x-el.s
    @x-el.s 5 месяцев назад

    Great video! thanks. one comment though-you could get the same result just using the curly brackets. the usage of query is applicable when you choose ranges like A1:E that doesn't have an end for future data.
    and thus using the formula....
    =QUERY({....;.....;.....}, "SELECT * WHERE Col1 IS NOT NULL")

    • @SheetsHelp
      @SheetsHelp  5 месяцев назад

      Thanks for the alternative. I am not clear on why the change though and referencing the curly braces. Both formulas are using curly braces.

    • @x-el.s
      @x-el.s 5 месяцев назад

      in your example you could only use the curly brackets only@@SheetsHelp

  • @sumanmandal7023
    @sumanmandal7023 Год назад +1

    May i use Query function to merge 10 workbooks into one sheet ?

  • @aliyakoy4197
    @aliyakoy4197 9 месяцев назад

    Results was not automatically expanded, please insert more rows

    • @SheetsHelp
      @SheetsHelp  9 месяцев назад

      The QUERY function can't change the size of your spreadsheet so you'll have to manually add rows. Then, the function should be OK. Unless you have millions of rows, in which case Sheets may not be able to handle the size.

  • @howieburd
    @howieburd 10 месяцев назад

    How would you use this formula if one table has more column headers and the other table is missing a few headers from the main table. I have two tables, one of which is a condensed version of the other. I want to be able to add the condensed version to the main version (match the similar headers)

    • @SheetsHelp
      @SheetsHelp  10 месяцев назад

      It's kind of a lame answer, but honestly, it's impossible to say without seeing the Sheet. These formulas can be quite different based on the factors specific to your situation. Sounds like a trick problem though, let us know how you solve it!

  • @aileenm1089
    @aileenm1089 5 месяцев назад

    I cant select the tab after typing the =Query({

    • @SheetsHelp
      @SheetsHelp  5 месяцев назад

      You can always type them in. This video explains the different types of cell references. ruclips.net/video/81KM2hnT9UQ/видео.html

  • @saurabhjain9509
    @saurabhjain9509 8 месяцев назад

    Is there any way that names in coloumn will not be duplicated

    • @SheetsHelp
      @SheetsHelp  8 месяцев назад

      You can prevent the headers from being duplicated by starting in the second row for each new worksheet (like in the video). If the duplicates are throughout the data, consider adding in the UNIQUE function.

    • @saurabhjain9509
      @saurabhjain9509 8 месяцев назад

      @@SheetsHelp Thanks alot

  • @ajie1922
    @ajie1922 5 месяцев назад

    How if one sheet?

    • @SheetsHelp
      @SheetsHelp  5 месяцев назад

      It would be a similar process, but use simple cell references like A1:D100 instead of the references to other sheets.

  • @rvsm3150
    @rvsm3150 Год назад

    Is it possible to use multiple sheets as reference for my drop down filters? When I try it, it won't filter the data I want. =QUERY({Data1!A1:G22;data2!A1:G22}, " SELECT * WHERE Col1 IS NOT NULL
    AND Col1 >=DATE """&TEXT(D5,"yyyy-MM-dd")&"""
    AND Col1

    • @SheetsHelp
      @SheetsHelp  Год назад +1

      I am not sure. What I would do is try the drop downs from different sheets without the QUERY and see if it works. Then I'd try the QUERY without the drop down and see if that works. Then try them together.

    • @rvsm3150
      @rvsm3150 Год назад

      @@SheetsHelp Thank you very much!!! I will go and try it out.

    • @x-el.s
      @x-el.s 5 месяцев назад

      assuming you have two arrays in column K and column L, and you want to join them and limit between two dates that are in M9 and N9 you should try this syntax
      =QUERY({K12:K;L12:L},"SELECT Col1 WHERE Col1>=DATE"&TEXT(M9,"'yyyy-mm-dd'")&"AND Col1

  • @suratkhan2426
    @suratkhan2426 Год назад

    Function is not in ms 2016

    • @SheetsHelp
      @SheetsHelp  Год назад

      Agreed. This function is only in Google Sheets.

  • @hells1285
    @hells1285 Год назад

    Iam not able to do ?

    • @hells1285
      @hells1285 Год назад

      Can you help me

    • @SheetsHelp
      @SheetsHelp  Год назад

      Sorry to hear that. What is the specific issue? It is a trick process with lots of things that can go wrong.