No video

VBA to BROWSE & COPY Data from SELECTED File in Excel

  Рет қаралды 328,392

Leila Gharani

Leila Gharani

Күн бұрын

Join 400,000+ professionals in our courses here 👉 link.xelplus.c...
Use this simple Excel VBA macro to allow the user to browse for the file they need to import or copy the data from. They will get Excel's open File Dialog Box and they can browse and select the workbook to copy the data from. We use VBA GetOpenFilename method to Open the workbook selected in the background, copy the data and then close the workbook. The user will not even realize the other workbook was opened in the background.
⬇️ DOWNLOAD the workbook here: pages.xelplus....
I will also show you how to avoid getting the message "method getopenfilename of '_application' failed". This is a common error when using the application.getopenfilename method and it can easily be avoided by declaring the correct variable type.
👩‍💻 What You'll Learn:
- User Flexibility with GetOpenFileName: Understand how to allow users to select files via Excel's Open dialog box.
- Efficient File Handling in VBA: Learn to open, import, and manipulate data from selected files without hardcoding paths.
- Practical Example: Follow a step-by-step guide to open a file, copy a range, and paste it into a designated area in your workbook.
- Multi-Selection Feature: Discover how to handle multiple file selections for bulk data processing.
🔥 Key Takeaways:
- Customizable File Paths: Free yourself from fixed file paths in VBA code or Excel cells.
- Simple Yet Powerful: Leverage the simplicity of the method for complex file handling tasks.
- Error Handling: Understand how to manage user cancellations and incorrect file selections.
You can expand on this Excel macro to copy data from multiple ranges or multiple sheets or create dynamic ranges.
Check out the FULL VBA Playlist: • Excel VBA & Macros Tut...
★ My Online Excel Courses ► www.xelplus.co...
➡️ Join this channel to get access to perks: / @leilagharani
👕☕ Get the Official XelPlus MERCH: xelplus.creato...
🎓 Not sure which of my Excel courses fits best for you? Take the quiz: www.xelplus.co...
🎥 RESOURCES I recommend: www.xelplus.co...
🚩Let’s connect on social:
Instagram: / lgharani
LinkedIn: / xelplus
Note: This description contains affiliate links, which means at no additional cost to you, we will receive a small commission if you make a purchase using the links. This helps support the channel and allows us to continue to make videos like this. Thank you for your support!
#excel #ExcelVBA

Пікірлер: 361
@LeilaGharani
@LeilaGharani 7 ай бұрын
Grab the file I used in the video from here 👉 pages.xelplus.com/vba-select-file
@ronvds4713
@ronvds4713 5 жыл бұрын
Most people I deal with look at spreadsheets as a glorified calculator and are amazed at what I do for them. And then you come along and I am amazed.
@LeilaGharani
@LeilaGharani 5 жыл бұрын
I'm glad I can still surprise you :)
@Matt-zp9jg
@Matt-zp9jg 3 жыл бұрын
For those wanting their copied range to be a bit more dynamic use this. OpenBook.Sheets(1).Range("A2").Select Range(Selection, Selection.End(xlDown)).Select Range(Selection, Selection.End(xlToRight)).Select Selection.Copy The only problem with this is it stops if there are any empty rows. So make sure to check your data! LastRow = Sheets(1).Cells(Sheets(1).Rows.Count, StartCell.Column).End(xlUp).Row LastColumn = Sheets(1).Cells(StartCell.Row, Sheets(1).Columns.Count).End(xlToLeft).Column Sheets(1).Range(StartCell, Sheets(1).Cells(LastRow, LastColumn)).Copy This code on the other hand will work and count data even if there any empty rows between data. I'm still trying to incorporate this code into her macro to work so far no luck haha!
@danieljosiahquijano5659
@danieljosiahquijano5659 Жыл бұрын
ThisWorkbook.Worksheets("HW15").Range("A1").PasteSpecial xlPasteAll At this part, I am encountering error, that highlights this as yellow. Can somebody help? While my colleague uses the same code, but works fine.
@Matt-zp9jg
@Matt-zp9jg Жыл бұрын
@@danieljosiahquijano5659 Could be many things: possible your code has not selected anything to copy. Paste will fail if nothing copied. Your range is different than your paste area. Also better to use this: high lighting entire column a even Blanks. Dim rng As Range Set rng = Range("A2", Range("A" & Rows.count.End(xlup).Address) rng.Copy Range("B2").PasteSpecial xlPasteAll
@johnhayse7147
@johnhayse7147 Жыл бұрын
@@danieljosiahquijano5659 Did you figure it out? I'm have the same problem :/
@danieljosiahquijano5659
@danieljosiahquijano5659 Жыл бұрын
@@johnhayse7147 I did, when you are recording a macro, under "Store macro in", select dropdown "This Workbook". it is a very specific code.
@johnhayse7147
@johnhayse7147 Жыл бұрын
@@danieljosiahquijano5659 Thanks!
@djdisasterjames
@djdisasterjames 4 жыл бұрын
These lessons are so awesome, you really dive into every little detail and explain it so clearly :) Dim as String --> False = "False". Dim as Variant --> False = False :D I was baffled by that once, no doubt others also benefited from this!
@LeilaGharani
@LeilaGharani 4 жыл бұрын
I'm glad the tutorials are helpful for you James.
@merbouni
@merbouni 5 жыл бұрын
Well, in less than a year, you've become the number one as reference ... Everything is useful in your KZbin channel..😍
@LeilaGharani
@LeilaGharani 5 жыл бұрын
Thank you, that makes me very happy :)
@MrKallemyran
@MrKallemyran 5 жыл бұрын
This is something I'll actually use so thank you. And also You strike me as very pedagogical so I'll have a look-see if your courses are something i can take parallel to my work.. Fascinated by excels power. Mostly becaus it lets me "program" some simple things without the need to upgrade my IT security clearance in the organisation. As long as I'm within excel boarders. I'm allowed to build "smartnes" 💡
@LeilaGharani
@LeilaGharani 5 жыл бұрын
I know exactly what you mean Thomas. Been in the corporate world myself for quite a while trying to navigate around the IT guidelines :)
@MrKallemyran
@MrKallemyran 5 жыл бұрын
@@LeilaGharani ha ha Don't say it so loud ;) anyway... I have enrolled.. Now I have to find some time ⏳
@coffeecuppepsi
@coffeecuppepsi 5 жыл бұрын
If someone doesn't like spreadsheets its just that they haven't seen this channel
@ckokse
@ckokse 5 жыл бұрын
So true!
@wuphysics87
@wuphysics87 5 жыл бұрын
Or because spreadsheets are the wrong tool for the job most of the time
@suresha2622
@suresha2622 4 жыл бұрын
I am trying to find a VBA code that will find a file utilizing where only the first six characters in the file name are always same and the file name ends with YYYY.MM.DD.xlsx. now my file is under 2020 folder and have to create seprate folder for each monts like Jan, Feb and Mar under 2020 folder, then in the each month file we have to change and create file on daily basis like this _ Y:\C & C FEES\Suresh\anbu 2020\04_Apr 2020\InvoicesDD.MM.YY(daily need to change the file date and monthly once change the month).
@shabbirkanchwala-abwaab6263
@shabbirkanchwala-abwaab6263 5 жыл бұрын
Very useful hints B4 I never thought that such can be done in excel I always gain a lots of practical knowledge from your Vdo Simply U R Gr8!!!
@Thurmanatr16
@Thurmanatr16 5 жыл бұрын
Never a dull video! 🙂Thank you for sharing your expertise with Analysts across the Corporate world. 😃
@LeilaGharani
@LeilaGharani 5 жыл бұрын
I'm glad if my videos are helpful in the corporate world :)
@craiggibson8547
@craiggibson8547 4 жыл бұрын
I’m doing the VBA course at the 😆moment. Very impressive, well structured and well explained stuff. Great job Leila 👍
@LeilaGharani
@LeilaGharani 4 жыл бұрын
That's great Craig. I'm glad you like the course. Many thanks for the feedback!
@lephterisp
@lephterisp 5 жыл бұрын
A whole new(amazing) world hidden behide Excel .Learning VBA is the next target for me.Thanks again for all you give to us .
@alexpspa60
@alexpspa60 4 ай бұрын
amazing!!! do you have a video on how to import multiple files?! 😊
@mellowkoopa
@mellowkoopa 5 жыл бұрын
This came up in my Google news feed, like sweet nectar of information magic'd down from the heavens to solve a problem I didn't know I had. Thank you so much for your very clear and concise tutorial. Subscribed.
@LeilaGharani
@LeilaGharani 5 жыл бұрын
You're very welcome. I'm glad to have you here.
@jmstampe
@jmstampe 5 жыл бұрын
Between this and ADO....these are my two faves to impress the non-technical
@matthewmusselwhite591
@matthewmusselwhite591 Жыл бұрын
You are truly amazing and a very gifted teacher. Thank you for all you do!!
@olibolivar7223
@olibolivar7223 5 жыл бұрын
I really learn new things every time I watch your videos. Thanks a lot! :D
@andyoverington712
@andyoverington712 3 жыл бұрын
Thank you. Finally someone who explains this stuff very well?
@dkb1111
@dkb1111 5 жыл бұрын
हर बार कुछ नया ,धन्यवाद लीला
@LeilaGharani
@LeilaGharani 5 жыл бұрын
I'm trying my best :)
@vishalpatil4102
@vishalpatil4102 3 жыл бұрын
Thank you for the valuable information, i have purchased all of your courses from udemy. They are so very helpful
@Things-Recycleing
@Things-Recycleing 5 жыл бұрын
Thanks for usual support in Excel every day learn new topic
@shrutiagarwal936
@shrutiagarwal936 4 жыл бұрын
Hi, i really like how easily and precisely you explain things. I have a query though, what should i do if i want to get data by opening a link which is a link to excel sheet and not from any worksheet which is saved in my PC.
@GrahamSchroder
@GrahamSchroder 4 жыл бұрын
Your channel is brilliant! I learn so much. Thanks!
@LeilaGharani
@LeilaGharani 4 жыл бұрын
Happy to hear that!
@spunjbom
@spunjbom 5 жыл бұрын
Awesome job, Leila! I can see myself using this in the future.
@LeilaGharani
@LeilaGharani 5 жыл бұрын
That's good to hear Bobby.
@vengamanaidu996
@vengamanaidu996 5 жыл бұрын
You are my teacher madam, i learned lot from you
@lifeinfluenceramitkachalia
@lifeinfluenceramitkachalia 4 жыл бұрын
Hi Leila. This video has really helped in one of my excel project of my process flow. I sincerely appreciate you for making this video. I would have loved to share my automation made out of this information, but, considering confidentialty, not possible. Thanks again for making and sharing. Will also go through your other videos.
@hadiasghari2266
@hadiasghari2266 3 жыл бұрын
u r my excel hero
@civilworks3591
@civilworks3591 4 жыл бұрын
hi, thank you for lots of tutorials you made. appreciate if you continue or added the program to paste on the last row please. TIA.
@ExcelExciting
@ExcelExciting 5 жыл бұрын
Great Video 👍🏻.. thanks for sharing
@LeilaGharani
@LeilaGharani 5 жыл бұрын
Thanks for the lightning fast comment Faraz :)
@tha2irtalib343
@tha2irtalib343 5 жыл бұрын
beautiful mind , and good teacher , thank you leila .
@craiggibson8547
@craiggibson8547 4 жыл бұрын
@tha2ir Talib beautiful teacher, and good mind, thank you leila .
@dhruvakerkar6956
@dhruvakerkar6956 3 жыл бұрын
Wow I was actually using "Path" option in excel all this long...this really help...Thanks
@user-zu5fe9yi2m
@user-zu5fe9yi2m Жыл бұрын
BIG THANKS LAILA
@buradagunta1
@buradagunta1 3 жыл бұрын
Hi, this is very helpful. would you explain considering the csv file instead xlsx file, copy data from sheet 1 of csv file opened and paste in the current workbook. Thank you
@anomolyreport
@anomolyreport 5 жыл бұрын
And here I thought openfiledialog and filesystem objects are the only ways to get file names.. Thank you!!
@hddevani
@hddevani 5 жыл бұрын
As always, excellent Top-Notch Pure explanation...
@arere9948
@arere9948 Жыл бұрын
TYSM for such an informative instruction, help me a lot 🥰
@justinsincoise6693
@justinsincoise6693 Жыл бұрын
I work in a hotel as a night Auditor. Someone managed to do his job at a fraction of a time because of time. Been trying to find out how he could import the report from our opera cloud into our excel. In a form of a format. This video gives a good example but I still need help. 😮
@twgrisham
@twgrisham 4 жыл бұрын
Well done. Very easy to follow and understand. How would handle a dynamic range in OpenBook?
@kurtauerbach5883
@kurtauerbach5883 2 жыл бұрын
Thanks this really helped me out. Clear and not boring!
@samirawati1975
@samirawati1975 Жыл бұрын
Wouderful video madam, can you please give this file for practice in description
@francoismarsau6412
@francoismarsau6412 Жыл бұрын
Great videos as always. I have signed up for some courses of yours to learm more. You are geat teacher. you mentioned that " and copy specific ranges and import them in our file will be shown later how to do". Can you give example of this or tell me lesson no in you course that explains this as I could not find it. Thank you once again for great courses and video content.
@smohanv
@smohanv 5 жыл бұрын
This is a kind of VBA idea i was searching for. Thanks. I have subscribed to this channel as well. Thanks a million.
@LeilaGharani
@LeilaGharani 5 жыл бұрын
Glad to help. It's great to have you here.
@mhmdseadawy8228
@mhmdseadawy8228 2 жыл бұрын
Thanks for this useful lesson, you are the best 👏👏
@prakharsrivastava7795
@prakharsrivastava7795 2 жыл бұрын
Thank you so much!! Extremely helpful video!!
@michelacosta9886
@michelacosta9886 Жыл бұрын
Very good Leila!!! than ks for this video!!!
@Ca7a1n
@Ca7a1n 2 жыл бұрын
Hi Leila and thank you very much for your useful videos! I have a problem with this code - it doesn`t work on MAC. Do you have a solution for this ? Thank you! Best regards!
@sasavienne
@sasavienne 5 жыл бұрын
Excellent.. Thank you very much for sharing your valuable knowledge with us Leila. 👍 👏 🌟
@LeilaGharani
@LeilaGharani 5 жыл бұрын
You're very welcome. Glad you like it.
@gutobrasiliabrasil
@gutobrasiliabrasil 3 жыл бұрын
Great!!! It is exactly what I was looking for!!! You are the best!!!
@spneerajmishra
@spneerajmishra Жыл бұрын
Great help thank you 😊
@wayneedmondson1065
@wayneedmondson1065 2 жыл бұрын
Hi Leila. Great tutorial! Thanks for sharing this :)) Thumbs up!!
@LeilaGharani
@LeilaGharani 2 жыл бұрын
Thank you! Cheers!
@Llb890
@Llb890 5 жыл бұрын
this is the way to increase knowledge
@LeilaGharani
@LeilaGharani 5 жыл бұрын
Glad the tutorial is useful.
@junangeles
@junangeles Жыл бұрын
This is what I've been looking for for my reporting! thanks so much. How about before pasting to destination sheet, a prompt or option to select the new range will be prompted or even paste data to the next blank row below the 1st copied file, is that possible? pls. thanks
@mc24bk
@mc24bk Жыл бұрын
Great video, very easy to understand. How to copy the entire column A & B without setting a range number?
@vaishalikhedlekar3733
@vaishalikhedlekar3733 3 жыл бұрын
This is really great !! But would like to understand how can we apply filter on the selected file based on a certain criteria and copy only the filtered data on the macro workbook.
@arifhk007
@arifhk007 5 жыл бұрын
I like your videos from other youtube videos...Coz your teaching style is very helpful and clear! Thank you, Mam!
@LeilaGharani
@LeilaGharani 5 жыл бұрын
I'm very glad to hear that :)
@thomasfetter
@thomasfetter Жыл бұрын
you are just awesome
@Fatfingertunes
@Fatfingertunes 2 жыл бұрын
Thanks! Always very helpful!
@sarfarajkureshi6569
@sarfarajkureshi6569 5 жыл бұрын
Nice tutorial mam. God bless you
@ImranKhattak-me1lw
@ImranKhattak-me1lw Жыл бұрын
Hi Leila Gharani ! i always concern your videos when i face some issue in my macro code. perfect videos highly recommend, how can i learn all the Vba techniques quickly and efficiently please guide me . Regards
@ashrafgharsan553
@ashrafgharsan553 3 жыл бұрын
Very useful and practical. Thank you for the great material!
@abdallah.kandiel
@abdallah.kandiel 5 жыл бұрын
Happy Thursday your highness This is not fair, you publish your jewels while me at work.😅 I can't return to my firsts💪 Anyways You are the one I'll brb after watching Thanks in advance ♥
@LeilaGharani
@LeilaGharani 5 жыл бұрын
First or not I'm always happy to see your comments :)
@samirmohapatra8582
@samirmohapatra8582 Жыл бұрын
Very useful ❤. Thank you so much 😊
@jayeshjamtani924
@jayeshjamtani924 5 жыл бұрын
Thank you #LeilaGharani #ExcelQueen for sharing this wonderful way to open files. I am a big fan of yours ( more than of Excel )
@LeilaGharani
@LeilaGharani 5 жыл бұрын
I'm happy to hear that :)
@rodrigodavalle5738
@rodrigodavalle5738 5 жыл бұрын
This is great! Thank you so much. I would like to know how should I change the code in order to paste the range in the active cell?
@anastasioualex
@anastasioualex 4 жыл бұрын
Try using: Range(cell("address")
@m1cannas
@m1cannas 2 жыл бұрын
You rock the item. Super
@venkatraghavanr5169
@venkatraghavanr5169 3 жыл бұрын
Good one...btw, how can someone dislike this video ?
@stephanie_ong
@stephanie_ong 3 жыл бұрын
Thanks! I was able to use your method perfectly :)
@Redtorres16
@Redtorres16 Жыл бұрын
Thank you very much for this i have a question how if the data of import file I want it to be icopy in the last record of my database what code to be added? Can you please mam............more power and God bless.
@joecross5335
@joecross5335 5 жыл бұрын
Helpful. I didn't know that method existed.
@rahulbakshi285
@rahulbakshi285 5 жыл бұрын
Thanks Leila, I got your VBA videos.
@LeilaGharani
@LeilaGharani 5 жыл бұрын
That's great Rahul. Thanks for your support.
@augustodemelo915
@augustodemelo915 3 жыл бұрын
It is great!!! Thank you so much for this very valuable information.
@mielkew27
@mielkew27 4 жыл бұрын
As always simple and easy to follow. But how can we clear the Clipboard as I'm getting notification every time I run the Macro.
@yflow5337
@yflow5337 2 жыл бұрын
How a beautilul Women! And how helpful information!
@farizpatah4081
@farizpatah4081 5 жыл бұрын
Finally got this macro.. Thanks a lot...
@LeilaGharani
@LeilaGharani 5 жыл бұрын
Glad to help :)
@awaisnadeem9325
@awaisnadeem9325 2 жыл бұрын
And what if we want to copy data from multiple excel files. I want the same result but what I want is that, I must have the flexibility to select different files and it must copy them after and after again. Can you please help me about it? I am waiting for your kind response. Please guide me.
@jimneely100
@jimneely100 4 жыл бұрын
1st Thank You for these Videos. This video was exactly what I was looking for. Simply, I need to open a CVS file from my excel and copy the CVS file to my excel file. However, I am finding this code does not work at thisworkbook.worksheets(). I have tried every way and still get the same. It opens the CVS but instead of coping to my workbook, it creates a new workbook.
@jimneely100
@jimneely100 4 жыл бұрын
got it fixed this is great. Again Thanks
@viniciusfaria9355
@viniciusfaria9355 4 жыл бұрын
Jim, how did you correct the error? I'm getting the same problem
@MohAboAbdo
@MohAboAbdo Жыл бұрын
Thank you so much
@badreddineessahi6457
@badreddineessahi6457 3 жыл бұрын
Hi there, thank you for the video, I did exactly what you explained but I'm getting an error 9 saying index out of range, could you please help with a workaround for this error
@antoniomusso1608
@antoniomusso1608 2 жыл бұрын
All you have to do is change the code from: Worksheets(“SelectFile”) to: Sheets(1)
@vinaynimje97
@vinaynimje97 4 жыл бұрын
I m following your channel since long. I have learnt a lot. Thank U . I have one question .. i want to update data if condition met i.e. ID, If ID Exists data should be updated but if ID doesn't exist the data should be save in last row of database. Kindly help.
@ramavtarsingh146
@ramavtarsingh146 2 жыл бұрын
Very useful thanks a lot, Keep it up.
@swapnilsakpal2504
@swapnilsakpal2504 3 жыл бұрын
Awesome video ma'am..much needed. iTs working for me. Thanks a lot. going one step ahead, I've a small huddle. I need to use index match formula within the same code, I tried but failed. Instead of defining the cells from source file. i need macro to use index match function and get the result in active sheet. Could you please assist me. Thank you so much in advance
@titsermon
@titsermon 4 жыл бұрын
Very informative. Gonna try it later.
@rockhammer5334
@rockhammer5334 4 жыл бұрын
thanks for very helpful video. I find that IF VarType(FileToOpen) = vbString And len(FileToOpen) > 1 is better able to handle the different cases.
@mohdkharish8169
@mohdkharish8169 5 жыл бұрын
Thanks a lot.. Awesome.. for next can you update for select file with multiple file.. Thanks
@JuzSayWooo
@JuzSayWooo 3 жыл бұрын
Thank you so much! I literally learn VBA from you and I have no background before this. Can I ask, what does the “title” argument actually do? I don’t get that part...
@robertakwasiadjei8223
@robertakwasiadjei8223 5 жыл бұрын
Very much grateful Leila.
@LeilaGharani
@LeilaGharani 5 жыл бұрын
You're very welcome Robert!
@FanJapanStudios
@FanJapanStudios 4 жыл бұрын
Best 👏 Channel 👏 EVER!!! 👏
@johnborg5419
@johnborg5419 4 жыл бұрын
Wish I could do that :) :) I am enrolling to your course for sure.
@edgovan1
@edgovan1 2 жыл бұрын
Is there any way of skipping rows? For example, conditional on whether data in a column of the range in the source data has "skip" written in it. Thank you for an excellent video - subscribed.
@totallycybertechnologies1631
@totallycybertechnologies1631 4 жыл бұрын
Fantastic video. Exactly what I need. After the user selects the file, is there a way for the user to select which data he/she would like to copy into cell A10?
@user-zh7km3ph7b
@user-zh7km3ph7b 3 жыл бұрын
Thanks a lot. it is usefully for me
@shaheershujaat2223
@shaheershujaat2223 5 жыл бұрын
Wow Leila you are looking very nice beautiful and amazing video well done 😊😊❤️❤️👍👍
@LeilaGharani
@LeilaGharani 5 жыл бұрын
Thank you, glad you like it :)
@shaheershujaat2223
@shaheershujaat2223 5 жыл бұрын
My pleasure Leila yup a lot 😊😊❤️❤️👍👍
@youzaist
@youzaist 4 жыл бұрын
You are the best ever.... life saver oh my gosh
@LongTruong-kh4vi
@LongTruong-kh4vi Жыл бұрын
thanks so much
@jonathanjesusdelvillarrebo7429
@jonathanjesusdelvillarrebo7429 5 жыл бұрын
Hello good night your video is very well explained, I just wanted to ask a question: How can I make a filter inside the files that opened and copy the data from the filter result?
@Interphaseable
@Interphaseable 3 жыл бұрын
Wonderful video!
@jeandaniel521
@jeandaniel521 2 жыл бұрын
Amazing, this saved me so much time :)
@LeilaGharani
@LeilaGharani 2 жыл бұрын
Great to hear!
@puranbisht6228
@puranbisht6228 4 жыл бұрын
Thanks for the wonderful video. Not a single moment when i felt bored seeing it. Amazing🤗 One doubt🤔, how can we browse and update from two different files.
@JG-fg1ye
@JG-fg1ye 5 жыл бұрын
excel-lent as always, Leila is stunning 👍🏻
@esbi1124
@esbi1124 4 жыл бұрын
Really good!
@rimantasdanilevicius6754
@rimantasdanilevicius6754 3 жыл бұрын
hi, nice tutorial. Seems very shot and informative! Maybe you have tutorial where you selecting multiply files and importing data to separate sheets in one workbook and rename every sheet like file name?
Copying Data from User Selected Files Using GetOpenFilename
10:26
Excel Macro Mastery
Рет қаралды 19 М.
So Cute 🥰
00:17
dednahype
Рет қаралды 42 МЛН
Gli occhiali da sole non mi hanno coperto! 😎
00:13
Senza Limiti
Рет қаралды 24 МЛН
大家都拉出了什么#小丑 #shorts
00:35
好人小丑
Рет қаралды 77 МЛН
VBA Advanced Filter - The FASTEST way to Copy and Filter Data
18:33
Excel Macro Mastery
Рет қаралды 280 М.
Loop Through All Files in a Folder Using VBA/Macros in Excel
13:41
VBA to Browse File and Open File in Excel
5:03
Excel Destination
Рет қаралды 80 М.
Learn How to Use Properties and Methods in Excel VBA Effectively
13:09
Learn Excel VBA to Automate Anything
14:02
Kenji Explains
Рет қаралды 418 М.
How to Copy Data from Another Workbook in Excel Using VBA
29:09
Essential Excel
Рет қаралды 41 М.
The Excel Trick I Use EVERY DAY (and you should too!)
11:21
MyOnlineTrainingHub
Рет қаралды 114 М.