Dataful
Dataful
  • 9
  • 20 340
4 Ways to Highlight Duplicates in Google Sheets
Learn 4 ways to highlight duplicates in Google Sheets with conditional formatting.
00:00 Intro
00:26 Simple duplicate
02:15 Entire rows
03:00 Multi-cell duplicates
03:56 Nth+ duplicates
📨 Newsletter: dataful.tech/subscribe/
#gsheets #googlesheets #googlesheetstips #googlesheetstutorial #duplicates #conditionalformating #datamanagement #datacleaning
Переглядів: 354

Відео

[NEW] Multi-Select Dropdowns in Google Sheets
Переглядів 1,6 тис.3 місяці тому
We can finally have multi-select dropdowns in Google Sheets! In this video will look at: - how to create them, - how they work, and - three ways to use them in formulas. 📄 Text version of the guide: dataful.tech/google-sheets/multiple-selection-dropdowns/ 📨 Newsletter: dataful.tech/subscribe/ #gsheets #googlesheets #googlesheetstips #googlesheetstutorial
The Power of Named Ranges in Google Sheets [2024]
Переглядів 2,2 тис.4 місяці тому
The complete guide to Named Ranges in Google Sheets, including best practices on how to choose their name and size. Compare to the Tables - the latest Google Sheets' feature. 📨 Newsletter: dataful.tech/subscribe/ 📄 Text version of the guides: - dataful.tech/google-sheets/named-ranges/top-advantages/ - dataful.tech/google-sheets/named-ranges/best-practices/ - dataful.tech/google-sheets/named-ran...
Structured Tables in Google Sheets: Everything You Need to Know
Переглядів 9 тис.6 місяців тому
A deep-dive guide into the latest Google Sheets upgrade - Tables. 📄 Text version of the guide: dataful.tech/google-sheets/tables/ 📨 Newsletter: dataful.tech/subscribe/ 00:00 Intro 00:34 Three Ways to Create Tables 01:35 Five Must-Do Settings After Creating 03:40 Seven Features of Tables 10:54 Five Limitations 14:21 Conclusions and Outro Correction: 01:50 Update: Google allowed to have spaces in...
4 Ways to Sort Data in Google Sheets by Multiple Columns (2024)
Переглядів 9137 місяців тому
Four ways to sort data by multiple columns and three things to keep in mind when doing it. 📄 Text version of the guide: dataful.tech/google-sheets/sort-by-multiple-columns/ 📨 Newsletter: dataful.tech/subscribe/ 0:00 Intro 0:20 Advanced sort 4:32 SORT function 9:09 SORTN function 11:53 QUERY function 16:19 Summary #googlesheets #gsheets #sorting #functions #googlesheetstips #googlesheetstutorial...
How to Create a Date Picker in Google Sheets (Easy)
Переглядів 4,1 тис.8 місяців тому
Two ways how to create a date picker (calendar dropdown) in Google Sheets. 📄 Text version of the guide: dataful.tech/google-sheets/data-validation/how-to-create-a-date-picker/ 📨 Newsletter: dataful.tech/subscribe/ #googlesheets #usability #datepicker

КОМЕНТАРІ

  • @AstirABA
    @AstirABA 17 днів тому

    How do you chart / graph non-numerical dropdown multiple selection data?

    • @dataful-tech
      @dataful-tech 17 днів тому

      Interesting question. Can you give more details about your use case and/or sample data?

    • @AstirABA
      @AstirABA 17 днів тому

      @@dataful-tech I sent you an email!

  • @HeidyRamirez-c7v
    @HeidyRamirez-c7v 17 днів тому

    This worked for me, now how can I get this total as you see above to pull from one sheet into another sheet, is it a query? what would the formula then be if you can help me

    • @dataful-tech
      @dataful-tech 17 днів тому

      Sure, happy to help. Can you expand on "get this total as you see above to pull from one sheet into another sheet", please? I am not sure I understand what this total refers to and whether you need to transfer the data between sheets of the same document or different documents.

  • @Couriosity
    @Couriosity 2 місяці тому

    Nice Video❤

  • @ChristopherPhillipsDev
    @ChristopherPhillipsDev 2 місяці тому

    Is it possible to have a relative named range? For example, I have cell C13 as named range "row_id". If I reference row_id in the same row but a different column, that's fine. But if I change to a different row, I'd like the named range to reference the new row.

    • @dataful-tech
      @dataful-tech 2 місяці тому

      Sort of, not sure if it covers your use case. For example, you can name a range C1:C20 as "data". Then you can refer to it in D1 as '=data' and you will get the value from C1. Same reference in D2 will give you C2, and so on. It also works in other sheets: you will get the value from row X that is a part of a named range when referring it from row X. Note: it works only if your range has one column. You will get an error otherwise. Does it make sense to you?

    • @ChristopherPhillipsDev
      @ChristopherPhillipsDev 2 місяці тому

      @@dataful-tech Yes, thank you! That did the trick. Subbed!

  • @olgaprotchenko248
    @olgaprotchenko248 2 місяці тому

    Super helpful! Thanks!

  • @lafamillecarrington
    @lafamillecarrington 2 місяці тому

    This feature has made organising data collected from an online Google Form so much easier. I had used Query, but that was quite confusing for other users.

    • @dataful-tech
      @dataful-tech 2 місяці тому

      Indeed, structured tables turned out surprisingly useful in many cases. After you get used to how the look )

  • @tandty321
    @tandty321 2 місяці тому

    Thank you so much 😭😭😭✨✨ you deserve a million subscribers already!!!👏👏👏

  • @DianaRoseBalmes
    @DianaRoseBalmes 2 місяці тому

    Hi, what formula should I use if I have 3 columns with multiple dropdown selections and I need to get the total number of each value from that columns. Example: The drop down list is just the same as the sample above but I need to add more column for specific dates. Dunno if I make sense but yeah

    • @dataful-tech
      @dataful-tech 2 місяці тому

      If I understood you situation correctly, you need to count how many times each unique dropdown value appears in three different multi-select dropdowns. You can do it with this formula: =LET(all_values, FLATTEN(MAP(A1:C1, LAMBDA(values, FLATTEN(SPLIT(values, ", ", false))))), QUERY(FILTER(all_values, all_values <> ""), "SELECT Col1, COUNT(Col1) GROUP BY Col1")) The formula assumes that dropdowns are in A1:C1. It will output a table with all options in one column, and number of occurrences in another. This formula can be tweaked in many ways, depending on your use case.

  • @dataful-tech
    @dataful-tech 3 місяці тому

    Updates since publishing this video (there will also be popups in the video): - Google allowed to have spaces in Tables' names. In the automatically created range names spaces will be replaced by underscores. - IMPORTRANGE now supports Table references.

  • @my_pleasure_in_your_leisure
    @my_pleasure_in_your_leisure 3 місяці тому

    Won't use the feature. But commenting to support. Keep up the good job, my Slav brother.

  • @renewahnke9433
    @renewahnke9433 3 місяці тому

    When im in data validation it only shows 2 types of dropdown menus, nothing else as options...

    • @dataful-tech
      @dataful-tech 3 місяці тому

      If you see only "Dropdown" and "Dropdown (from a range)" options, you are likely trying to create a date picker in a Table - they will look like in this video ua-cam.com/video/AZ-PSOpx2vc/v-deo.html. Tables support only those two options. You can still add a date picker to that column by setting it's type to "Date".

    • @renewahnke9433
      @renewahnke9433 3 місяці тому

      @@dataful-tech thanks

  • @MISComputerNET
    @MISComputerNET 4 місяці тому

    Excellent tutorial. Thanks a lot!

  • @sarwadeajit
    @sarwadeajit 5 місяців тому

    many useful info you have in your video thank you..

    • @dataful-tech
      @dataful-tech 5 місяців тому

      Happy to hear that, thank you for watching!

  • @olgaprotchenko248
    @olgaprotchenko248 5 місяців тому

    ❤ this will save me ages

  • @olgaprotchenko248
    @olgaprotchenko248 5 місяців тому

    I'm definitely trying this! Thanks

  • @contentcapitalists
    @contentcapitalists 6 місяців тому

    great video! thanks. Please keep posting more about this.

  • @evbray
    @evbray 6 місяців тому

    🖖

  • @juicy_ruslan
    @juicy_ruslan 6 місяців тому

  • @olgaprotchenko248
    @olgaprotchenko248 6 місяців тому

    Thanks for the tips!

  • @olgaprotchenko248
    @olgaprotchenko248 6 місяців тому

    👍

  • @FionaKOchannel
    @FionaKOchannel 7 місяців тому

    After 3rd attempt I got it but I didn't work with Google tables before

    • @dataful-tech
      @dataful-tech 7 місяців тому

      Was any specific step difficult or just unfamiliar tool in general?

    • @FionaKOchannel
      @FionaKOchannel 7 місяців тому

      @@dataful-tech 2. I think it's also a confusion from previous experience with Excel. It took time to realise different logic.

  • @AlexBektop
    @AlexBektop 7 місяців тому

    Good job!

  • @evbray
    @evbray 8 місяців тому

    comment) ty))

  • @olgaprotchenko248
    @olgaprotchenko248 8 місяців тому

    Very helpful, thanks!