VBA to BROWSE & COPY Data from SELECTED File in Excel

  Рет қаралды 338,113

Leila Gharani

Leila Gharani

Күн бұрын

Пікірлер: 369
@LeilaGharani
@LeilaGharani 11 ай бұрын
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 2 жыл бұрын
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 2 жыл бұрын
@@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 2 жыл бұрын
@@danieljosiahquijano5659 Did you figure it out? I'm have the same problem :/
@danieljosiahquijano5659
@danieljosiahquijano5659 2 жыл бұрын
@@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 :)
@Fatfingertunes
@Fatfingertunes 2 жыл бұрын
Thanks! Always very helpful!
@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!!!
@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 .
@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 ⏳
@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.
@andyoverington712
@andyoverington712 3 жыл бұрын
Thank you. Finally someone who explains this stuff very well?
@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).
@craiggibson8547
@craiggibson8547 5 жыл бұрын
I’m doing the VBA course at the 😆moment. Very impressive, well structured and well explained stuff. Great job Leila 👍
@LeilaGharani
@LeilaGharani 5 жыл бұрын
That's great Craig. I'm glad you like the course. Many thanks for the feedback!
@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 :)
@buradagunta1
@buradagunta1 4 жыл бұрын
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
@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.
@vishalpatil4102
@vishalpatil4102 3 жыл бұрын
Thank you for the valuable information, i have purchased all of your courses from udemy. They are so very helpful
@Poland805
@Poland805 2 ай бұрын
Great video, actively using it currently. I only had one question regarding the macro: is there any way to change the default file open location to be context sensitive? For clarity: is it possible running this macro to have the default window open up to where the file is currently located in a dynamic fashion? We are trying to do this because we have many different folders with various data sets. I'm trying to think of a way to have the default window open up to the local folder, but be context sensitive. So if the excel file is moved the default dialogue box will change depending on the location of the workbook. Thanks in advance for anyone that can help.
@matthewmusselwhite591
@matthewmusselwhite591 2 жыл бұрын
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
@leonallen6159
@leonallen6159 2 ай бұрын
I’m getting into excel and love this stuff. Thank you.
@LeilaGharani
@LeilaGharani Ай бұрын
Glad you enjoy it!
@Jihad-f3e
@Jihad-f3e 2 ай бұрын
Very nice explanation, bless your efforts
@NikunjDM
@NikunjDM 5 жыл бұрын
हर बार कुछ नया ,धन्यवाद लीला
@LeilaGharani
@LeilaGharani 5 жыл бұрын
I'm trying my best :)
@dhruvakerkar6956
@dhruvakerkar6956 3 жыл бұрын
Wow I was actually using "Path" option in excel all this long...this really help...Thanks
@alexpspa60
@alexpspa60 8 ай бұрын
amazing!!! do you have a video on how to import multiple files?! 😊
@ruteshrudra6320
@ruteshrudra6320 3 ай бұрын
Thanks for this video and it is really helpful but how to create data should select and copy data dynamic
@twgrisham
@twgrisham 4 жыл бұрын
Well done. Very easy to follow and understand. How would handle a dynamic range in OpenBook?
@ExcelExciting
@ExcelExciting 5 жыл бұрын
Great Video 👍🏻.. thanks for sharing
@LeilaGharani
@LeilaGharani 5 жыл бұрын
Thanks for the lightning fast comment Faraz :)
@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 :)
@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?
@alexofrhodes
@alexofrhodes 4 жыл бұрын
Try using: Range(cell("address")
@gutobrasiliabrasil
@gutobrasiliabrasil 3 жыл бұрын
Great!!! It is exactly what I was looking for!!! You are the best!!!
@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.
@GrahamSchroder
@GrahamSchroder 4 жыл бұрын
Your channel is brilliant! I learn so much. Thanks!
@LeilaGharani
@LeilaGharani 4 жыл бұрын
Happy to hear that!
@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 3 жыл бұрын
Thanks for this useful lesson, you are the best 👏👏
@thomasfetter
@thomasfetter Жыл бұрын
you are just awesome
@Things-Recycleing
@Things-Recycleing 5 жыл бұрын
Thanks for usual support in Excel every day learn new topic
@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.
@arere9948
@arere9948 Жыл бұрын
TYSM for such an informative instruction, help me a lot 🥰
@vengamanaidu996
@vengamanaidu996 5 жыл бұрын
You are my teacher madam, i learned lot from you
@francoismarsau6412
@francoismarsau6412 2 жыл бұрын
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.
@kurtauerbach5883
@kurtauerbach5883 3 жыл бұрын
Thanks this really helped me out. Clear and not boring!
@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.
@prakharsrivastava7795
@prakharsrivastava7795 2 жыл бұрын
Thank you so much!! Extremely helpful video!!
@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 3 жыл бұрын
All you have to do is change the code from: Worksheets(“SelectFile”) to: Sheets(1)
@samirmohapatra8582
@samirmohapatra8582 Жыл бұрын
Very useful ❤. Thank you so much 😊
@FanJapanStudios
@FanJapanStudios 5 жыл бұрын
Best 👏 Channel 👏 EVER!!! 👏
@hddevani
@hddevani 5 жыл бұрын
As always, excellent Top-Notch Pure explanation...
@wayneedmondson1065
@wayneedmondson1065 3 жыл бұрын
Hi Leila. Great tutorial! Thanks for sharing this :)) Thumbs up!!
@LeilaGharani
@LeilaGharani 3 жыл бұрын
Thank you! Cheers!
@michelacosta9886
@michelacosta9886 Жыл бұрын
Very good Leila!!! than ks for this video!!!
@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?
@spunjbom
@spunjbom 5 жыл бұрын
Awesome job, Leila! I can see myself using this in the future.
@LeilaGharani
@LeilaGharani 5 жыл бұрын
That's good to hear Bobby.
@stephanie_ong
@stephanie_ong 3 жыл бұрын
Thanks! I was able to use your method perfectly :)
@anomolyreport
@anomolyreport 5 жыл бұрын
And here I thought openfiledialog and filesystem objects are the only ways to get file names.. Thank you!!
@mc24bk
@mc24bk Жыл бұрын
Great video, very easy to understand. How to copy the entire column A & B without setting a range number?
@robinvermeulen8710
@robinvermeulen8710 4 жыл бұрын
I get a Runtime Error 9: "Subscript out of range" error when I try this. This is my line of code that includes the error: "ThisWorkbook.Worksheets("SelectFile").Range("F4:H43").PasteSpecial xlPasteValues". I know the error is generated because I refer to a sheet that 'doesn't exist', but my code is exactly as in the video I think... What am I missing here?
@matteopeguri3294
@matteopeguri3294 4 жыл бұрын
Hi Robin, I also have the same problem, did you understand the problem?
@stevel7888
@stevel7888 4 жыл бұрын
Hey, you need to change the worksheet name from "SelectFile" to whatever the name of your worksheet is where you want to data to be copied to. For example -ThisWorkbook.Worksheets("My Data").Range("F4:H43").PasteSpecial xlPasteValues"
@robinvermeulen8710
@robinvermeulen8710 4 жыл бұрын
@@stevel7888 I know, someone else said this also, but thanks anyway!
@robinvermeulen8710
@robinvermeulen8710 4 жыл бұрын
@@matteopeguri3294 yes, I did! I needed to change the name of the sheet I am referring to. In my code I have "SelectFile" as the sheet name. However, it's name was different. So in this position should be the name of the sheet you want to paste the values in. Good luck!
@matteopeguri3294
@matteopeguri3294 4 жыл бұрын
i@@stevel7888 Hi Steve, it doesn't work anyway. But now i have another error "Object not found". Do you have any solution? thx
@Ca7a1n
@Ca7a1n 3 жыл бұрын
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.
@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
@totallycybertechnologies1631
@totallycybertechnologies1631 5 жыл бұрын
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?
@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
@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 :)
@sachinkumbhar4097
@sachinkumbhar4097 4 жыл бұрын
Thanks leila ,, but what if we want to copy the data from multiple excel
@ramavtarsingh146
@ramavtarsingh146 2 жыл бұрын
Very useful thanks a lot, Keep it up.
@elactecnology
@elactecnology 4 жыл бұрын
Hello Leila. Thank very much for your very useful tutorial. I tried this and it actually worked, not quite well but it did. When I try to copy a huge amount of data from another workbook before it gets passed, Excel shows a message which says "There is a large information on the clipboard ...." And I am all the time supposed to click Yes, so that Excel can copy it properly!! How would I work out?
@EnigmaProduction
@EnigmaProduction 2 жыл бұрын
I'm sure you have moved on past this issue. But if you add a line at the end of the code that copies a single cell after all the data has been pasted, the popup window will not appear.
@enriqueblanco8784
@enriqueblanco8784 3 жыл бұрын
Thanks for your excel related content. I was wondering, can Google sheets open (and run) excel files containing macros (buttons, for instance)?
@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.
@sarfarajkureshi6569
@sarfarajkureshi6569 5 жыл бұрын
Nice tutorial mam. God bless you
@aelina1588
@aelina1588 2 жыл бұрын
Hi Leila! Thanks so much for this video. I followed this pretty much step by step, but I'm getting a 'subscript out of range' error. I'm looking at the documentation to understand this error in this context, but I'm not comprehending. Do you have resources or tips on how to debug this?
@augustodemelo915
@augustodemelo915 4 жыл бұрын
It is great!!! Thank you so much for this very valuable information.
@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
@yulinliu850
@yulinliu850 5 жыл бұрын
Great teaching of VBA. Thanks Leila!
@LeilaGharani
@LeilaGharani 5 жыл бұрын
You're very welcome. Glad you like the tutorial.
@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.
@spneerajmishra
@spneerajmishra Жыл бұрын
Great help thank you 😊
@hadiasghari2266
@hadiasghari2266 3 жыл бұрын
u r my excel hero
@smith28c
@smith28c 4 жыл бұрын
Hi Leila, thanks for the great video's I generally watch all of them, I have a small problem, I get Excel files from different members of which I open and then import into my Excel data, the problem is they have a verity of extensions such .xls, .xlsx,.xlsm is there a way to be able to use with an open workbook, your comments would be much appreciated Regards..Don.
@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...
@vpt262
@vpt262 4 жыл бұрын
Thank you so much for this video. How can I adopt this script for importing a complete csv file and pasting it in a specific cell?
@Time_utilize
@Time_utilize 2 жыл бұрын
Please could you provide this vba workbook post course?
@johnborg5419
@johnborg5419 4 жыл бұрын
Wish I could do that :) :) I am enrolling to your course for sure.
@tha2irtalib343
@tha2irtalib343 5 жыл бұрын
beautiful mind , and good teacher , thank you leila .
@craiggibson8547
@craiggibson8547 5 жыл бұрын
@tha2ir Talib beautiful teacher, and good mind, thank you leila .
@rahulbakshi285
@rahulbakshi285 5 жыл бұрын
Thanks Leila, I got your VBA videos.
@LeilaGharani
@LeilaGharani 5 жыл бұрын
That's great Rahul. Thanks for your support.
@JG-fg1ye
@JG-fg1ye 5 жыл бұрын
excel-lent as always, Leila is stunning 👍🏻
@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
@ashwind3966
@ashwind3966 4 жыл бұрын
Hi, Thanks it is really useful. But I am getting message box saying"There is a large amount of information on the clipboard. Do you want to paste this information....... " How to escape this message and run the macro smoothly.
@AdrenalinnVapor
@AdrenalinnVapor 2 жыл бұрын
Add this line after the paste line "Application.CutCopyMode = 0"
@gosasan
@gosasan Жыл бұрын
@@AdrenalinnVapor Thank you for that! :)
@farizpatah4081
@farizpatah4081 5 жыл бұрын
Finally got this macro.. Thanks a lot...
@LeilaGharani
@LeilaGharani 5 жыл бұрын
Glad to help :)
@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 :)
@everythingandanything4102
@everythingandanything4102 10 ай бұрын
Hi Leila, great vids as always, however, i have a question, I am getting a run time error 9, 'subscript out of range' on line 9 ThisWorkbook.worksheets("Selectfile").range("A10").pastespecial xlpastevalues what could be the problem?
@ericw.3250
@ericw.3250 4 ай бұрын
Hi, you need to replace the name "SelectFile" by the name of the Sheet you want to paste the data in
@leasairanen6603
@leasairanen6603 4 жыл бұрын
Hello Leila, thanks for this video. I wonder, could you help me? I want to learn how to move information from one excel to another. I have data in one excel and want to move it to another; in first empty cell. How to do it?
@LeilaGharani
@LeilaGharani 4 жыл бұрын
The easiest would probably be Power Query. You could have a look at this one for inspiration: kzbin.info/www/bejne/nHmphptses11mdk
@ashrafgharsan553
@ashrafgharsan553 4 жыл бұрын
Very useful and practical. Thank you for the great material!
@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 😊😊❤️❤️👍👍
@Interphaseable
@Interphaseable 3 жыл бұрын
Wonderful video!
@jeandaniel521
@jeandaniel521 3 жыл бұрын
Amazing, this saved me so much time :)
@LeilaGharani
@LeilaGharani 3 жыл бұрын
Great to hear!
@nevermind4780
@nevermind4780 5 жыл бұрын
another creative ideas ☺👍👌
@youzaist
@youzaist 5 жыл бұрын
You are the best ever.... life saver oh my gosh
@samirawati1975
@samirawati1975 Жыл бұрын
Wouderful video madam, can you please give this file for practice in description
@gummadinagalakshmi4083
@gummadinagalakshmi4083 3 жыл бұрын
Thanks it's help me somehow.but I am seeing for same sheet I need to count the value having NA and seperate the count to another sheet.can you advise.. Thanks 😊
@briangilbride
@briangilbride 4 жыл бұрын
is there a video that details how to edit this further? I'm looking to open a file, filter a pivot table in that file, copy the filtered data, then paste that into the original workbook
@ianh1998
@ianh1998 4 жыл бұрын
Hi Leila, Love your channel and the quality of your presentations and lectures, I always learn something new. Could you possibly help Mac users, like myself, by quoting shortcut keys for both Windows and MacOS? Also, the specific file selection/access techniques you refer to in this video don't work on MacOS Catalina due to Apple's sandboxed architecture. Could you suggest an alternative approach that would be platform independent? Thanks in advance...
@LeilaGharani
@LeilaGharani 4 жыл бұрын
Sorry Ian. I don't have any Mac in my office.
@joecross5335
@joecross5335 5 жыл бұрын
Helpful. I didn't know that method existed.
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
VBA Advanced Filter - The FASTEST way to Copy and Filter Data
18:33
Excel Macro Mastery
Рет қаралды 287 М.
Copying Data from User Selected Files Using GetOpenFilename
10:26
Excel Macro Mastery
Рет қаралды 21 М.
You Won’t Believe What Excel’s Copilot Can Do! (new updates)
10:37
Learn How to Use Properties and Methods in Excel VBA Effectively
13:09
The Ultimate Guide to Copying Data using Excel VBA
31:05
Excel Macro Mastery
Рет қаралды 70 М.
Learn Excel VBA to Automate Anything
14:02
Kenji Explains
Рет қаралды 521 М.
How to Create & Use Excel Macros (Real world example)
10:09
Leila Gharani
Рет қаралды 1,7 МЛН
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН