I don't use VLOOKUP anymore. I use this instead....

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 พ.ย. 2024

ความคิดเห็น • 284

  • @Excelambda
    @Excelambda 2 ปีที่แล้ว +61

    Great video!!
    Still VLOOKUP is versatile when it comes to column indexes.
    For example, in "XLOOKUP (table)" spreadsheet, if we set in the range C5:F5 : Name, Start date, Salary, Department, to extract the values corresponding to those columns we can use in C7:
    =VLOOKUP(C6,staff,XMATCH(C5:F5,staff[#Headers]))
    or
    =VLOOKUP(C6,staff,{2,6,5,4})

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +13

      That is a GREAT tip... Donut for you Exceλambda 🍩
      I normally don't mind breaking such lookups in to separate formulas. If I am trying to combine two tables, I always try the "table relationships" or "power query" first before even considering any lookups.

    • @sandeeepkiran1130
      @sandeeepkiran1130 2 ปีที่แล้ว +1

      What if the date has 2 employees joined.
      Will xlookup show both? Or just the first one?

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      Just the first one. You need to use FILTER or something else to get all matches. See this video - th-cam.com/video/ma7u0sUIM-A/w-d-xo.html

    • @Excelambda
      @Excelambda 2 ปีที่แล้ว +3

      @@sandeeepkiran1130 Hi, like Chandoo said, we can use FILTER, do this little experiment, set these values in the following ranges:
      A1:A6 B1:B6 D1:D2
      a 1 b
      b 2 c
      b 3
      c 4
      c 5
      d 6
      Lookup vector (lv) D1:D2, lookup array (la) A1:A6 (has dups) , return array (ra) B1:B6 (can be any array with more than 1 clm)
      - formula similar to xlookup functionality in B8 or anywhere:
      =FILTER(B1:B6,ISNUMBER(XMATCH(A1:A6,D1:D2)))
      - or define a lambda that does the lookup: Duplicate Xlookup: DXL(lv,la,ra)
      =LAMBDA(lv,la,ra,FILTER(ra,ISNUMBER(XMATCH(la,lv))))
      -call
      =DXL(D1:D2,A1:A6,B1:B6)
      Both, formula and function will extract the corresponding sections of "ra" for all matches with duplicates or not.
      Hope that helps.✌😉

    • @Excelambda
      @Excelambda 2 ปีที่แล้ว

      No need to say that this concept works also for arrays oriented horizontally. The only rule, since we use also XMATCH in the construction, both lookup vector and lookup array (lv and la) should be 1D arrays, no matter if they are horiz or vert.

  • @chrism9037
    @chrism9037 2 ปีที่แล้ว +15

    I agree Chandoo. Once XLOOKUP came out, I haven't used VLOOKUP since. Great video

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      The brave new world... XLOOKUP and FILTER changed the way I approach my spreadsheets now.

  • @5pctLowBattery
    @5pctLowBattery 2 ปีที่แล้ว +5

    Cool 😎
    I started at a new company that uses office 365. Old company still used 2010 old excel. Lots to learn with new excel features.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +2

      Congrats on your new job. I suggest catching up on "dynamic array functions" too. See this video - th-cam.com/video/ONaS7IMKJPM/w-d-xo.html

  • @utubeAgape
    @utubeAgape 2 ปีที่แล้ว +2

    Same here! Ever since Xlookup came on the scene, I stopped using VLookup AND index match - Xlookup is much more efficient!

  • @abbottkatz8830
    @abbottkatz8830 ปีที่แล้ว +1

    You can also return multiple resuts in VLOOKUP with column index numbers surrounded by squiggly brackets as array constants.

  • @KhiaraHarsh
    @KhiaraHarsh 9 หลายเดือนก่อน

    I find your step by step instructions very useful and relatable to a practical scenario. Keep up the good work!

  • @canirmalchoudhary8173
    @canirmalchoudhary8173 2 ปีที่แล้ว +2

    Even I hate VLOOKUP and this video is best ever video as XLOOKUP tutorial
    Awesome 👌

  • @TannerDavies
    @TannerDavies 2 ปีที่แล้ว +3

    One of the best tutorials I've seen. Love your excel and PBI videos!

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Wow, thanks!

  • @jaganpreetsingh1842
    @jaganpreetsingh1842 2 ปีที่แล้ว +1

    We can use choose() function with vlookup to give result which are on left side

  • @udaimadduri6137
    @udaimadduri6137 2 ปีที่แล้ว

    This is fantastic! I have been dreaming for these simple useful features for several decades. Finally, my dream came true. Thank you so much!

  • @Magahasaracom
    @Magahasaracom 2 ปีที่แล้ว

    Wow until I watched this video Xlookup has been complex for me to understand. You explained everything so simply and thank you

  • @mindlearn2981
    @mindlearn2981 ปีที่แล้ว +1

    Thank you for this explanation. I have another scenario that I would like some clarification on. What if in Column A, I have e-mail addresses of people, and then in Column B, I have text with data in it as follows separated by comma's e.g. pizza, pasta, potatoes. E-mail adress 1 has pizza, potatoes, E-mail address 2 has pasta and E-mail 3 has pasta, potatoes. I would now like to make 3 additional separate columns Pizza and Pasta and Potatoes with in these columns the ' lookedup ' e-mail addresses. In the colunm name Pizza, only e-mail addres 1 would be mentioned. In Column Potatoes, E-mail 1 and E-mail 3 would be shown and so on. How to go about? Can this be done with XLOOKUP? Or is some other formula needed? Thank you for your reply!

  • @dkjangir
    @dkjangir 2 ปีที่แล้ว

    great sir I believe you are the first website i used to learn excel at all.& I am very happy to see again chandoo excel expert.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Thanks and welcome

  • @rkmsafi
    @rkmsafi 2 ปีที่แล้ว

    Master class.. Way back I learn from you in excel webpage.. Now you are on youtube.. We are expecting a fire works..🔥🔥

  • @KeenyNewton
    @KeenyNewton 2 ปีที่แล้ว

    Excellent! Vlookup is powerful but is painful if not done correctly. xlookup looks better.

  • @jeisonsanchez4842
    @jeisonsanchez4842 2 ปีที่แล้ว +2

    Only issue with xlookup is that I can’t share the spreadsheet to people with older Excel versions. I have to think whether the file will be shared before I decide between vlookup and xlookup. Thanks for the awesome tips.

    • @fawazkolaposulaiman1925
      @fawazkolaposulaiman1925 2 ปีที่แล้ว

      You could break the links in your sheet, if you have to share and if other users don't need to understand the underlying function you used.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      That is a good point. Yeah, if I working with a client that doesn't have XLOOKUP, I just revert to either VLOOKUP or INDEX MATCH as needed.

  • @jamiereife5581
    @jamiereife5581 2 ปีที่แล้ว

    It would be nice if there was a “match formatting indicator” in the formula to match the formatting from where our result derives so that you don’t have to correct the formatting in your formula result. So if the formatting in the result column was a date or currency, a match formatting indicator would automatically ensure that your result matched the formatting of the column from where the result derived. This would be nice because almost nobody would want a date answer returned in a Juliane date or currency returned without commas.

  • @rajshekharshirur5374
    @rajshekharshirur5374 ปีที่แล้ว

    Hi, I would like to learn excel from starting from basic, pls guide me.

  • @richasingh-zu8pz
    @richasingh-zu8pz 2 ปีที่แล้ว

    wow you teach in such a simple manner !!!

  • @mikatu
    @mikatu 2 ปีที่แล้ว +1

    I am getting sick of these tips that only work in Office365.
    It is great, but why would I use a program that will never be mine?
    Anyway, great video and explanation.

  • @Rood67
    @Rood67 2 ปีที่แล้ว

    3:47 into the video, and I stopped playback to subscribe. Great info that’s easy to follow, with practical examples.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Welcome aboard Rood😀

  • @bhaskardebnath6401
    @bhaskardebnath6401 2 ปีที่แล้ว

    Very well explained... extremely high standard ....mush better than paid professional.

  • @teoxengineer
    @teoxengineer 2 ปีที่แล้ว +10

    Chando hi, good presentation.
    We can use Vlookup with different directions by using Choose function like =Vlookup(X,A1:C100,Choose({2,1},Array-1,Array-2),0). It provide us to go opposite direction like XLookUp.
    However, when we change column sequence or not sorted range, VLookUp is not giving us the correct result.
    So,
    I would like to learn just LookUp function because it is being used to find different matches as same value. How can we achieve it?
    Could you please prepare LookUp video for it.
    Thank you 🙏

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      Thanks Emre... The VLOOKUP(..CHOOSE()) is a good trick and I've used it in the past. I suggest watching the FILTER video for this. th-cam.com/video/JuTdj2j-9Kg/w-d-xo.html

  • @harishpoalampalli9637
    @harishpoalampalli9637 2 ปีที่แล้ว

    This is Incredible !! simply the superb replacement of INDEX MATCH + VLOOKUP very powerful!! thanks a chandoo !! This is helping me a lot !! Great Explanation with sample workbook !! the uniqueness in you is providing the entire workbook for practice which helps a lot by watching the video and on fly implementing them !! Great Keep them coming chandoo!!

  • @rameshbhatt3231
    @rameshbhatt3231 2 ปีที่แล้ว

    Thanks Chandoo, this is awesome. I look after so many things in TH-cam but never really subscribed anything. After watching your video today, I instantly subscribed and clicked on like as well. This is really helpful and presented very nicely. Appreciate it, god bless you!

  • @wayneedmondson1065
    @wayneedmondson1065 2 ปีที่แล้ว

    Awesome Chandoo! Thanks for the great lookup examples both old and new. Thumbs up!!

  • @robevans2114
    @robevans2114 2 ปีที่แล้ว

    Very well presented. I can not wait for my next vlookup project to try xlookup. Thank you

  • @canirmalchoudhary8173
    @canirmalchoudhary8173 2 ปีที่แล้ว +1

    Currently the only limit that I faced is that it can't simultaneously work on multiple rows and colum range. In that I have to apply XLOOKUP in adjacent column because I extract values for multiple row values spanning over multiple column.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      If your adjacent column is a SPILL Range, then you can also use XLOOKUP like this:
      =XLOOKUP(a1#, lookup arry, result array) and it will automatically extend to the number of rows needed as per A1#

    • @canirmalchoudhary8173
      @canirmalchoudhary8173 2 ปีที่แล้ว

      @@chandoo_ Oh let me try that also.

  • @syarifairlangga4608
    @syarifairlangga4608 2 ปีที่แล้ว

    Xlookup is just so modern and easy.
    Data source also doesnt need to be on the left but can be anywhere.
    Basically just click n click n done. Microsoft need implement new modern formula like this.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      and that is why, It is my new favourite function of Excel

  • @johnkempes5538
    @johnkempes5538 2 ปีที่แล้ว

    Thank you Uncle, you are very Humble,,,

  • @NeutronStar9
    @NeutronStar9 2 ปีที่แล้ว

    Always thought why vlookup doesn’t allow me to select the query column and return column and it took I don’t know how much since your video is news to me, thank you!

  • @adigrg8575
    @adigrg8575 2 ปีที่แล้ว

    The problem with using xlookup is client does not have it and shows error in the sent file.
    For personal it’s a great replacement for vlookup.

  • @vivek1202
    @vivek1202 2 ปีที่แล้ว

    Hi,
    How to look for values of multiple choices like instead of looking for 1 data in respective column, if I want to find out data for multiple choices for eg. Todays Date, Symbol, Expiry, Option Type....Now I want to look for the price in there respective column against these multiple choices.
    In other words.... How to find 1 data for multiple choices?

  • @surajvishwakarma9199
    @surajvishwakarma9199 ปีที่แล้ว

    Sir you are a real champion

  • @chandrashekarsheshadri7231
    @chandrashekarsheshadri7231 ปีที่แล้ว

    Great video. Getting error with # Name? using excel 2010. do not work in 2010 version.

  • @nealbhakta9235
    @nealbhakta9235 2 ปีที่แล้ว

    Thank you so much for your hard work. I would like to confirm that xlookup is also in excel 2021 pro plus version.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      Woohoo... That is a good news indeed. I have switched to 365 many moons ago so not keeping up with fixed versions. Thanks for letting us know :)

  • @yashmangupta
    @yashmangupta 2 ปีที่แล้ว

    Interesting to learn this new function. Can it return multiple date of joining based on the example in your video. If there are multiple people joining the same date? Thanks much appreciated 👍

  • @theyeezyscript
    @theyeezyscript 2 ปีที่แล้ว

    Xlookup is literally my favourite and one of most used functions. I feel sad for people still looking vlookup haha

  • @Moglikaur
    @Moglikaur ปีที่แล้ว

    Great video by great Chandoo .. thank you for this..

  • @deegadams
    @deegadams 7 หลายเดือนก่อน

    I have a really complex problem. I feel like there is some way using filter & xlookup to solve this but I can't figure it out. I have a table that has 5 columns (standard, 5 day, duplicate, pre-eng, dwgs only, transcend, other) & then 10 rows with codes for simplicity sake well just say (AA, BB, CC, DD, etc.) There is data that intersects with each column & row. There is a validation input cell. My boss made this huge Ifs formula with Vlookup. I tried to just change all the VLookup with Xlookup but i get an error. I saw a video that can use multi criteria column header with row data but can't make that based on a validation input cell. I know there is a way but I'm wracking my brain to figure it out.

  • @neXianXaviaX
    @neXianXaviaX ปีที่แล้ว

    Chandoo help! I have a lot of things to lookup, I have multiple tables and I have to add my lookup results together! Not only that but there's many totals I want to calculate and put into a new table!
    Very useful, I've watched a few of your videos and I'm a fan so I clicked the subscribe button for more excel tips :p

  • @deerajkumarkanala9145
    @deerajkumarkanala9145 2 ปีที่แล้ว

    I have a filter for my column, and i am trying to select a keyword manually from the manually, so is there any option so that i can put this keyword in some cell and write some filter formula so that it will automatically filter the keyword from the list?

  • @tsumichama
    @tsumichama 2 ปีที่แล้ว

    I don't use vlookup either (or hlookup). But that's because I use index match. (Some people where I work still have excel 2010 so I avoid newer functions. I try to keep up with them as they come out but it's hard to master them when you don't use them 😭)

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Aww.. sorry to hear that. I sometimes work with clients who are still using older versions of Excel and it annoys me to no end. If you want to just practice these functions, you can always try Excel online.

  • @tillytoad804
    @tillytoad804 2 ปีที่แล้ว +1

    Love this, no more iferror!

  • @mrspongetv4236
    @mrspongetv4236 2 ปีที่แล้ว

    Hi sir. Can you help me? What i wanted in my ghant chart is that when i add a holiday, all activities will adjust even if the other activities did not fall onto the holiday date.. can it be possible?? Love the video by the way.

  • @cdorresteijn
    @cdorresteijn 2 ปีที่แล้ว +2

    It is often better to use INDEX and MATCH. It's more robust to making changes to the matrix, and works better with drag & drop.

    • @bryan__m
      @bryan__m ปีที่แล้ว

      It's very rare for me that I must use Index/Match over XLookup. OTTOMH the only times I've used it is if I wanted 2-axis searching.

  • @daprinceofdabay
    @daprinceofdabay 2 ปีที่แล้ว

    Index/match got its own function. Wow I didn’t even realize. Will start using this now!

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      Welcome to the brave new world

  • @sass520
    @sass520 2 ปีที่แล้ว

    Sir first of all i would like to tell you tht your videos are amazing and very nicely explained, i also got a query wht does (* ) means here when u used in xlookup ?? Is it same like And condition in the filter video?

  • @razadigital92
    @razadigital92 2 ปีที่แล้ว

    Super video and great information for digital world 🌍 .

  • @lazyreviewssupport9811
    @lazyreviewssupport9811 2 ปีที่แล้ว

    OK.... Will xlookup work 🙄 with earlier versions

  • @auliakhamil
    @auliakhamil 2 ปีที่แล้ว

    Thanks Chandoo, great video 😃

  • @toto7002
    @toto7002 2 ปีที่แล้ว

    What if I have more than one return, how can make sure there are no other value may match the criteria, assuming the look up not unique

  • @aparnaprabhakar9269
    @aparnaprabhakar9269 ปีที่แล้ว

    What if more than one matching information available? how to return 2 or more details?

  • @oa3999
    @oa3999 2 ปีที่แล้ว

    how to use it to retrieve multiple values from the same column, is it possible?
    I use INDEX and ROW and it's so long formula

  • @yuthsumaleewichai4226
    @yuthsumaleewichai4226 2 ปีที่แล้ว

    Hello Chandoo from 2:47, if there are more than one person starting working on the same date, what results would Xlookup will return? Thanks for making the videos about excel.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Xlookup (and all other lookups in Excel) just return the first matching value. If you want to see all results, you can use FILTER. Here is a video about that - th-cam.com/video/JuTdj2j-9Kg/w-d-xo.html

  • @judithalex2087
    @judithalex2087 2 ปีที่แล้ว

    Hi Chandoo, thank you for this!! XLOOKUP is a game changer. Just one issue- I just used it to return a date on the cell. However, the source data for that particular lookup value is blank. But the XLOOKUP returns 1/0/1900. Can you share how I can have the cell come out as blank if the source data is blank?

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      You are welcome Judith.
      Excel doesn't have true BLANK values. When a formula finds blank, it returns 0. Which for dates, treated as 1/0/1900. You can try ISBLANK(XLOOKUP(..)) to check if the result of XLOOKUP is indeed blank and then do something.
      Another technique is to use File > Options > Advanced > "Display options for this worksheet" > Show a zero in cells that have zero value and unchecking it. But it will also remove any actual zeros from the screen.

  • @ScottMattes
    @ScottMattes 2 ปีที่แล้ว

    Very nice, but major organizations don't just drop what they have and upgrade when newer, greater versions come out! Sometimes for years!

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      That is true. But sometimes people also move to a different job. So you never know when you might need it.

  • @shreyayerhs
    @shreyayerhs 2 ปีที่แล้ว

    Hi Chandoo,
    What are the limitations of xlookup, if any?

  • @silverpegasusknight
    @silverpegasusknight 2 ปีที่แล้ว

    Epic Knowledge!... for Day 2 day usage. Thanks!! Subscribed!!!

  • @Svbp99
    @Svbp99 2 ปีที่แล้ว

    I think it was mentioned already but I use variables for column number and this does not seem to be possible in xlookup.

  • @bharatputra108
    @bharatputra108 2 ปีที่แล้ว

    Very usefull thanks . Will sure learn many things from your videos

  • @maverickriderJB
    @maverickriderJB 2 ปีที่แล้ว

    One question, if we have multiple items in lookup array with same name will xlookup return all corresponding values. I tried and it brings only the first one.

  • @vishnunair8790
    @vishnunair8790 2 ปีที่แล้ว

    Hi sir i beend using xlookup for while but at some point even xlookup fails example if we want to lookup value for one single column xlookup fails but vlookup runs fine example in one workbook i have employee id and in another work book i have same employee and want to get which are duplicate via formula with out using condition formatting function so xlookupfails or may be i dont knw how to reconstruct the formula could you help

  • @naumansaleem8603
    @naumansaleem8603 2 ปีที่แล้ว +1

    It's better to fix the array using F4.😉

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      Amen to that.

  • @Mrdayz
    @Mrdayz 2 ปีที่แล้ว

    Thank you, I found this useful. I have been using =ifna(index...(match), It works well but looks messy. I will use xlookup in the future. Thank you

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Glad it was helpful!

  • @ganguaniban
    @ganguaniban 2 ปีที่แล้ว

    If multiple person joined same date.how we can find out..is xlook up return multiple values for a single date.

  • @DataNarrator
    @DataNarrator 2 ปีที่แล้ว +1

    first ......I am learning excel from your channel. it's just great.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Thanks Mayuri...

  • @Sohailshaikh251
    @Sohailshaikh251 2 ปีที่แล้ว

    We can use lookup formula also

  • @rahulchandoria
    @rahulchandoria 2 ปีที่แล้ว +1

    Getting lots of inspiration from you chandu. Keep uploading the new videos. Its my suggestion for you could you please make a playlist of Excel learning from A toZ videos. I use to share your video and channel to my friends but they are getting difficulty to start from where

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Thanks Rahul. I have many playlists on the channel on various themes. Check out th-cam.com/channels/8uU_wruBMHeeRma49dtZKA.htmlplaylists/

  • @Narendra_Singh_Modi
    @Narendra_Singh_Modi 2 ปีที่แล้ว

    Sir Xlookup is not available in 2016 version. 90% are MS 2007-2016 users. So it's Better to use Index and match formula then.

  • @xtraordinaire
    @xtraordinaire 2 ปีที่แล้ว

    Great stuff, Chandoo. Thanks!

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Glad you liked it!

  • @mrazimsagar
    @mrazimsagar 2 ปีที่แล้ว

    You are an angle of education.
    Just a wish, "Allah bless you"

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      😊 Thank you Mr Azim

  • @CulturalFoods
    @CulturalFoods 2 ปีที่แล้ว

    Hi Chandoo, have you used Xlookup for multiple criteria, may 2D or 3D (ie. search for criteria that is vertical and horizontal to get the Return Value). Thank you for your nice work!

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      I do. I explain these and many other advanced concepts in my mini-course here - chandoo.org/wp/lookups-for-data-analysis/

  • @braco0000
    @braco0000 2 ปีที่แล้ว

    I said it once and say it again... Xlookup is Index/Match simplified. The fourth argument is like wrapping the formula with "IFERROR"

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Hmm... you may want to read up a bit more about the formula. It is vastly improved version with many other abilities. I suggest giving it another try and embracing it.

    • @braco0000
      @braco0000 2 ปีที่แล้ว

      @@chandoo_ Yeah... I just did. I just saw the whole video. It's like Index/Match with steroids!

  • @asifkhan-zt3dl
    @asifkhan-zt3dl 2 ปีที่แล้ว

    From few days when ever I use xlookup, in data if i have error result after that would be error in rest of the line items. Any idea why?

  • @shiroyasha_007
    @shiroyasha_007 2 ปีที่แล้ว +3

    Legends know that Chandoo has already made a video showing how he replaced index match with xlookup way back

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +3

      OG!!!
      Yes, I have few other XLOOKUP videos on the channel. But I feel that most of our new followers are not familiar with XLOOKUP. So I made another video (with more tips) :)

    • @shiroyasha_007
      @shiroyasha_007 2 ปีที่แล้ว

      @@chandoo_ You are a Legend Chandoo. Keep them coming.

  • @gyrs94376
    @gyrs94376 2 ปีที่แล้ว

    can vlookup use in same excel file, in 2 different sheets....

  • @saikrishnapagadala7449
    @saikrishnapagadala7449 2 ปีที่แล้ว

    Hi Chandoo, so basically only when we convert the range to table, we can return the entire row correct? Can we return a row when we are using normal data range instead of converting to table? Thanks in advance!

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      You can. FILTER(a1:a10, b1:b10>5) returns the A1:A10 values where B column value is >5

  • @damodaramgurram1905
    @damodaramgurram1905 2 ปีที่แล้ว

    Good explanation Chandoo..

  • @TheAbzy01
    @TheAbzy01 2 ปีที่แล้ว

    Learned something new today, Thank you.

  • @sanjayjha1966
    @sanjayjha1966 2 ปีที่แล้ว

    yes I also always use xlookup instead of vlookup, great experience sir

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      The best!

  • @markwalmsley7699
    @markwalmsley7699 2 ปีที่แล้ว

    Xlookup is really useful but if you have thousands of functions it’s very resource heavy, that will slowdown your workbook, whereas lookup is much more efficient with resource

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +3

      Hmm.. have done any tests? On the contrary, I found that XLOOKUP is the fastest (and also produced smallest files) when using millions of times. I have a video coming up next week discussing this exact topic.

  • @BhadriShashikanth
    @BhadriShashikanth 2 ปีที่แล้ว

    Very informative. Thanks for sharing

  • @thordeian
    @thordeian ปีที่แล้ว

    Help Chandoo!
    I copied and pasted something from your templates into a "reference" workbook that I use regularly. In this copy/paste process I seemed to bring along with it a "DISCLAIMER" message Popup notification that requires me to click the "X" to remove it.
    How do I get rid of it? I can't seem to find any help on this, probably because I don't know what to call it to find help on it. Can you help, please?

    • @chandoo_
      @chandoo_  ปีที่แล้ว

      Not sure what you are referring to here... if this is a file that you downloaded or bought from me, it might be helpful if you can email me the details.

  • @Office_and_Chai
    @Office_and_Chai ปีที่แล้ว

    Thank you so much chandu you saved me

  • @JudiantoTjahjoNugroho
    @JudiantoTjahjoNugroho 2 ปีที่แล้ว +1

    It is only in 365?

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Yes (and in Excel online or the web)

  • @jatinpalsingh5562
    @jatinpalsingh5562 2 ปีที่แล้ว +1

    awesome man, will save a lot of time and effort for me

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      Glad I could help

  • @abhiabhishek7942
    @abhiabhishek7942 2 ปีที่แล้ว

    Thank you nice easy to understand tutorial

  • @mahendernagula9658
    @mahendernagula9658 2 ปีที่แล้ว

    hi can anybody tell me that if start date is more then 1 or more then we need all the details how we can sort that ?? i am using only Excel 2019

  • @afzaalahmad3185
    @afzaalahmad3185 2 ปีที่แล้ว

    Great Respected Sir, Mr. Chandooo !!!!
    August Way to Execute the knowledge !!!!

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      So nice of you

  • @ezazakhtar6339
    @ezazakhtar6339 2 ปีที่แล้ว

    How to learn everything one needs to learn to become a data analyst and get hired as a data analyst basically what one needs to do, in a roadmap? This is my only question! 🙏 Please Answer.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Thanks Ezaz for the suggestion. I am working on a video for Data Analyst Roadmap. If you want a step by step Excel course for DAs, see this - chandoo.org/wp/excel-school-program/

  • @incredible421
    @incredible421 2 ปีที่แล้ว

    This is very helpful. Thanks for the video

  • @andresfrancojunor
    @andresfrancojunor 2 ปีที่แล้ว

    Fantastic ! Thank you Chandoo !!

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      Glad you liked it!

  • @Azhar_Khan383
    @Azhar_Khan383 2 ปีที่แล้ว

    Sir because of your videos I have learn a lot in excel, all credit goes to you. Thanks & keep awesome posting videos.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Wow.. thanks Azhar. :)

  • @Data_Mom
    @Data_Mom 2 ปีที่แล้ว +1

    Xlookup does not work in older versions of Excel, need to rely on vlookup and index/match.

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      Of course yes.

  • @dhanflores2416
    @dhanflores2416 2 ปีที่แล้ว

    Damn you just earned a new subscriber. This is a really powerful tool.

  • @loveasingh
    @loveasingh 2 ปีที่แล้ว

    Any fix for using xlookup inside an excel table..keep getting #Spill

  • @silvana11221122
    @silvana11221122 2 ปีที่แล้ว

    hi Chandoo hope you are well. I like how you dont have to say exact match etc... i just need to practice and change my habits... i still do some lotus 123 lol

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว +1

      All good here Silvana... 😀 Wow, someone from Lotus times.

    • @silvana11221122
      @silvana11221122 2 ปีที่แล้ว

      @@chandoo_ yes lol every time excel brings out a new version it hides our old lotus backstokes further and further away but i can still find some ha

  • @268791avinash
    @268791avinash 2 ปีที่แล้ว

    Thats great, I am asking you a different question, WHich software you use to edit your videos :)

    • @chandoo_
      @chandoo_  2 ปีที่แล้ว

      I use Camtasia for my videos. You can get a free trial here - techsmith.pxf.io/c/3169105/506622/5161

  • @jeromegonzales3809
    @jeromegonzales3809 2 ปีที่แล้ว

    woww nice vids, another learning :)