YOU WILL NEVER PERFORM VLOOKUP AGAIN.. WATCH TILL END…

Sdílet
Vložit
  • čas přidán 2. 09. 2021
  • This video will teach you how to automate Vlookup in Excel with Python using the Openpyxl library. Increase your productivity by automating vlookup. Watch now and become a master of replacing Vlookup with Python automation using Openpyxl!

Komentáře • 53

  • @mukeshkumarmahto767
    @mukeshkumarmahto767 Před rokem

    can we get the source code of this

    • @python-bits
      @python-bits  Před rokem

      You can find code here. pastebin.com/NjpRepNd

  • @MrKevin440
    @MrKevin440 Před rokem +1

    Your tutorials rock! Everything use works as you describe and I wonder if you teach as your profession. Subscribed, liked, and bell! Awesome!

  • @yiprio4030
    @yiprio4030 Před 2 lety +2

    Thank you so much
    Your lesson is so good.

  • @kishorep3668
    @kishorep3668 Před rokem +1

    Wonderful buddy , great video , I have been looking for such type of automation from 2018 but couldn't find, This one really helps 😀 , great job tons of thanks for the video .

  • @balrajswamy
    @balrajswamy Před 2 lety +1

    Very nice Presentation and more clear, Thanks a lot sir

  • @nandhagopal8699
    @nandhagopal8699 Před 2 lety

    Woww... really amazing.......I tried various area for 3 hrs ..not got what I want....but here...with only just this video I got it ..great...
    thanks a lot.....

  • @csn572
    @csn572 Před 2 lety

    Thank you.. Can you do this using arrays for both the sheets (master sheet and daily sheet). Please share if you have an example.

  • @radhikamadhavakumar5167

    Being a new python learner, this was really helpful and great explanation.

  • @ayandakhumalo7189
    @ayandakhumalo7189 Před 2 lety

    I love this.. Perfect
    Now can you make a video on Index/Match?

  • @pranjalpadole164
    @pranjalpadole164 Před rokem

    Thank you soo much, it's helps me in my projects ❤

  • @hunnicutbj3124
    @hunnicutbj3124 Před 2 lety +1

    Thank you, helpt alot!

  • @georgecodeing7907
    @georgecodeing7907 Před rokem +1

    thank u so much ......exactly what im looking for :)

  • @diegolorenzo8712
    @diegolorenzo8712 Před 3 měsíci

    would be super appreciated videos for pivots and indexmatch also!

  • @haribhaskar72
    @haribhaskar72 Před měsícem

    Awesome 👍

  • @ggapsang
    @ggapsang Před rokem

    Thank you so much. Very kind and great lecture.

  • @YazminAbat
    @YazminAbat Před 2 lety +2

    thanks for saving us from excel misery

  • @royalwinautomatedsoftware2985

    Hai sir, ur video super. I learn so much ur channel. I have one doubt I'm using excel data python. Excel sheet cells I have created formula. Excel read data python program only copy formula not value. Please help me I need excel rows read values only. Please advise sir.

  • @gsammy5115
    @gsammy5115 Před rokem

    Thank you very much🤩

  • @nikkikumari1701
    @nikkikumari1701 Před 2 lety +1

    Thank you 😊

  • @CBSE1902
    @CBSE1902 Před 5 měsíci +1

    Perfect, bhai if we have 120+ columns then do you think that firstly we need to count the columns in excel...it's not the right way to do in industry level

  • @lakshyagaran2514
    @lakshyagaran2514 Před 2 lety

    Hey, I am able to vlookup..... but on my mastersheet only the values are getting printed, not along with the column names. Is there anything I should do, Please help !

  • @hugogonzalez8242
    @hugogonzalez8242 Před 2 lety +1

    Nice. Very helpful.

  • @Frank-si2jd
    @Frank-si2jd Před rokem

    Very nice tutorial and the way you go back and forward between the code and explaining what needs to be done in the sheet and what the code is doing in the Excel-sheet is incredible helpful. Is there a way, to automatically put rows in order of date?

    • @python-bits
      @python-bits  Před rokem +1

      This may require some pre-processing but it's possible. I will add a short tutorial for this in next couple of days.

    • @Frank-si2jd
      @Frank-si2jd Před rokem

      @@python-bits Thanks! Hope you can send me a short answer when you have it online. You are doing a wonderful job here and this is highly appreciated by us the viewers!

    • @python-bits
      @python-bits  Před rokem +1

      Just added a new video on sorting. Check it out here: czcams.com/video/Cn1TTQZ4Opg/video.html

    • @Frank-si2jd
      @Frank-si2jd Před rokem

      @@python-bits Hi Python Bits, thank you very much for your incredible fast response in creating this tutorial!! Well done!

  • @manndipp
    @manndipp Před rokem

    Thanks a ton

  • @giogobronidze7788
    @giogobronidze7788 Před 2 lety +1

    Thanks for the video.
    Could you please do the same thing but using pandas?

    • @thisisamitrathore
      @thisisamitrathore Před 2 lety

      pandas will remove all formatting and formulas of the file.

  • @MainTeknoID
    @MainTeknoID Před rokem

    thanks gan

  • @z.r.777
    @z.r.777 Před 2 lety +2

    Good good good.
    But I'll personally go with Pandas instead

  • @sandeepgupta6526
    @sandeepgupta6526 Před 6 měsíci

    Thanks

  • @svstyle560
    @svstyle560 Před rokem +1

    If there is multiple master excel data then how can i vlookup the data. Need your help on this.

    • @python-bits
      @python-bits  Před rokem

      You will need to create multiple worksheet objects like we did for daily_sheet and master_sheet and iterate over each one of them and run a comparison.

  • @sandeepchavan1013
    @sandeepchavan1013 Před 2 lety

    For heading is not printing in final shee

  • @siddharthtiwari1335
    @siddharthtiwari1335 Před 2 lety

    I am facing error in import openpyxl. Kindly suggest what shall I do.

    • @python-bits
      @python-bits  Před 2 lety

      Make sure to install openpyxl package using 'pip install openpyxl' before importing it.

  • @NRAJ1966
    @NRAJ1966 Před 2 lety +1

    please add code so as enable to copy and use

    • @python-bits
      @python-bits  Před 2 lety

      Will start adding them. Thanks for the feedback!

  • @dieglo90
    @dieglo90 Před rokem

    Nice, but using pandas seens to be easier

  • @hritikmukati8621
    @hritikmukati8621 Před 5 měsíci

    this will not going to work for large data set.

  • @NRAJ1966
    @NRAJ1966 Před 2 lety +1

    beutifuly explained but code not included with video

  • @gustavohernandez7169
    @gustavohernandez7169 Před 2 lety +1

    It works but if you use a 41k rows pfff!!!

    • @python-bits
      @python-bits  Před 2 lety

      If you have a large file, you can store data in objects (or other data structure, probably list of dictionaries), perform your logic operation and then save that compared data into new excel file.

  • @yeshwanthrajapaladugula7991

    using pandas is better

  • @kalininshaw1691
    @kalininshaw1691 Před 9 měsíci

    I don't know ur English