Excel VBA | Get File Names and Details in folders and sub folders

  Рет қаралды 62,658

Extreme Automation - Kamal Girdher

Extreme Automation - Kamal Girdher

Күн бұрын

Пікірлер: 163
@compscript7973
@compscript7973 11 ай бұрын
👍Several hours watching videos and I finally found a simple one that works.
@davesextraneousinformation9807
@davesextraneousinformation9807 2 жыл бұрын
Thanks for this. I've been trying to do things like this for a long time. I like your solution. It is straightforward and clear. I also learn a lot from your teaching technique where you show everything from setting up the references to seemingly writing the code on the fly and solving issues as they come up, just as in real life.
@xtremeExcel
@xtremeExcel 2 жыл бұрын
I am glad that you are happy with the content.😀
@DalpatMistry
@DalpatMistry 3 ай бұрын
works perfect! - how do i search specific file (based on filename) and find the latest filename based on last modified date and move to specified location?
@DalpatMistry
@DalpatMistry 3 ай бұрын
Like your explanation - very well & simple
@time_capsul.e
@time_capsul.e 5 жыл бұрын
This is what I want .... thank you very much sir......hats off to u
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Thank you Pranav. Subscribe and share to see more.
@khaledjwahri6516
@khaledjwahri6516 4 ай бұрын
Thank you for this very interesting tutorial, I ask you, in the same subject, to make a video which explains, using vba, how to keep the ten recent files and delete the others I managed to make a backup folder but I still want to keep the ten recent copies only, thank you
@knass28
@knass28 3 жыл бұрын
I am new to VBA and this works great! Thank you! How do I get the button in my Excel sheet to insert the path as shown in your example?
@kartiksoni4702
@kartiksoni4702 2 жыл бұрын
Did the way how to do that?
@sharmapokkuluri6221
@sharmapokkuluri6221 6 жыл бұрын
Hi Kamal, Thanks a lot for a very good 'take through' scripting video. Could we add folder and subfolder names to be included amidst in the rows in the 6 column fields? Could you please explain how to include folder and subfolder names listed between these file names. Regards Sharma
@vincysigma
@vincysigma 3 жыл бұрын
Very well explained this video.. Will you please make a video of how to search files from the excel sheet(file names will be typed in A1 by user) in sub-folders and paste them in to a destination folder..
@greenheysg45
@greenheysg45 6 ай бұрын
Very helpful indeed. Works perfectly. Many thanks!
@MrShivdin
@MrShivdin 4 жыл бұрын
Very good explanation, How can I get the image Dimensions (Length and Width)? Thanks
@Basavaraja_NT
@Basavaraja_NT 2 жыл бұрын
Hi Kamal, Thanks for this video. But kindly walk us through how we can give file directory where we need to check ?
@Mohairp53
@Mohairp53 2 жыл бұрын
Thx for sharing as I was just looking into to do the same in VBA.
@davidmacminn8658
@davidmacminn8658 6 жыл бұрын
This works very well, however I am having difficulty extracting certain metadata/file properties. "Subject, comments, title, and content status" I am unsure what makes these different from the properties that can be extracted.
@safiafaustino9559
@safiafaustino9559 5 жыл бұрын
Wow! This works! THANK YOU! Your explanation to each line was superb. Liked and Subscribed!
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Thank you! Stay Connected. :-)
@gagarzbipom4254
@gagarzbipom4254 3 жыл бұрын
Hi! First of all, thank you for your work, really appreciate. I know nothing about VBA. I try to edit the code to add two more columns: Framerate and Video length, but it`s not working. How can I retrieve those file attributes?
@princechhabra4059
@princechhabra4059 5 жыл бұрын
Hi Kamal, thanks for the walk through. Can you also advise what code would be used if I also wanted to check whether these files are password protected or not?
@viralpatel3798
@viralpatel3798 4 жыл бұрын
Thanks for sharing such a wonderful macro. It helps me a lot.
@xtremeExcel
@xtremeExcel 4 жыл бұрын
Great to hear!
@michaelwade882
@michaelwade882 4 жыл бұрын
Great video, thanks. One ? How do I change the starting row for the report to start populating? If I want this to start in cell A5.
@glennsanbuenaventura9716
@glennsanbuenaventura9716 5 жыл бұрын
thank you so much for this great tutorial! it works for me only the get details without subfolder but when I tried to include the code for subfolder it didn't work. why? here's the code. Option Explicit Sub listAllFiles() Dim objFileSystemObject As Scripting.FileSystemObject Dim objFolder As Scripting.Folder Set objFileSystemObject = CreateObject("Scripting.FileSystemObject") Set objFolder = objFileSystemObject.GetFolder("C:\Users\hp\Documents\XXX") Call GetFileDetails(objFolder) End Sub Function GetFileDetails(objFolder As Scripting.FileSystemObject) Dim objFile As Scripting.File Dim nextRow As Long Dim objSubFolder As Scripting.Folder 'Set objFileSystemObject = CreateObject("Scripting.FileSystemObject") 'Set objFolder = objFileSystemObject.GetFolder("C:\Users\hp\Documents\XXX") nextRow = Cells(Rows.Count, 1).End(xlUp).Row + 1 For Each objFile In objFolder.Files Cells(nextRow, 1) = objFile.Name Cells(nextRow, 2) = objFile.Path Cells(nextRow, 3) = objFile.Size Cells(nextRow, 4) = objFile.Type Cells(nextRow, 5) = objFile.DateCreated Cells(nextRow, 6) = objFile.DateLastModified nextRow = nextRow + 1 For Each objSubFolder In objFolder.SubFolders Call GetFileDetails(objFolder) Next Next End Function
@miles_mtb
@miles_mtb 2 жыл бұрын
Very helpful, thank you for sharing.
@k102stone
@k102stone 6 жыл бұрын
Hi XtremeExcel, Is there a code to pulling the Username of who created the files or folders? Thanks for creating this video, it's a big help. Ken
@AlamMT
@AlamMT 6 жыл бұрын
Nice video sir ...but i have one query ...how to connect path to text box ..for fetch data ??Please guide me how to create same sheet you have ...
@niteshd2291
@niteshd2291 6 жыл бұрын
Would be great if you could explain this. In the code you have left the "bluetooth" folder. Kindly show how to connect path to the text box in the file.
@guidovandewaal1345
@guidovandewaal1345 5 жыл бұрын
Set objFolder = objFSO.GetFolder(Sheets("Sheet1").Range("B2").Value)
@teosmi
@teosmi 3 жыл бұрын
Hi thank you. It helped me for my small project. Is it possible to add 2 columns, one with the files md4 hash and one the files md5 hash?
@arielzabatecuizon5147
@arielzabatecuizon5147 5 жыл бұрын
just a newbie here: Q: At 7:25, you cut "Dim objFile As Scripting.File" and put it one line below, does it matter something? In this actual case, does it really matter you put in one line below after the folder line?
@aliciaojeda5718
@aliciaojeda5718 2 жыл бұрын
Hi! Thanks for the video! Is there's any way to get the author and last person thay modify each file?
@paulogoncalves60
@paulogoncalves60 4 жыл бұрын
Thanks a lot, I was looking for this solution for a quite long time. Just one question, how do you do the second line of your Excel, where you are able to insert the desired path?
@latasalagaonkar6302
@latasalagaonkar6302 4 жыл бұрын
Thank you so much I tried many codes but I couldn't able to enter the subfolders thanks a lot😃
@xtremeExcel
@xtremeExcel 4 жыл бұрын
Stay connected 😃
@vincysigma
@vincysigma 3 жыл бұрын
Thats Wonderful tutorial Sir.. Thank you
@xtremeExcel
@xtremeExcel 3 жыл бұрын
Thanks Vincent! Stay connected!
@kalite02
@kalite02 4 жыл бұрын
Thank you very much for this interssing and useful video.. is it possible to do same thing with a folder in a cloud? for example in google Drive.
@xtremeExcel
@xtremeExcel 4 жыл бұрын
That's a interesting thing to try. Would you like to give a chance?
@hanshotfirst2363
@hanshotfirst2363 3 жыл бұрын
Hello! I love this video, and we actually have used this macro extensively. However, I had a question--how can I find out who the file OWNER is (aka the person who last used/saved the document)?
@selvan1264
@selvan1264 2 жыл бұрын
Nice video, do you know how to pull folder, Filename info from sharepoint library? and how to upload to sharepoint library from local drive. Thank you
@KeshviGx
@KeshviGx 4 жыл бұрын
Thanks for this is it possible to adapt this code to pull a list of subfolders only starting with 2020 for example?
@benvbrunschot
@benvbrunschot 5 жыл бұрын
This is amazing! Have been looking for this for a long time. Thanks a lot :)
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Great. Stay connected and share our posts to help in achieving our mission of teaching millions of people.
@vijaymanjrekar6289
@vijaymanjrekar6289 3 жыл бұрын
Thanks a lot this is very good session
@RandyValencia
@RandyValencia 4 жыл бұрын
Thank you so much. Works great with my file.
@xtremeExcel
@xtremeExcel 4 жыл бұрын
Great to hear! :-)
@barunpradhan1278
@barunpradhan1278 2 жыл бұрын
Great tutorial. However I am encountering one problem. I work in an organization where the number of files are huge and when I run the macro it gets to around 55000 rows after which I get an error. I think there is a stack overflow after certain number of files.
@xtremeExcel
@xtremeExcel 2 жыл бұрын
Maybe.. I have not tested with such huge number of files. Though it is good point to investigate. We can connect.
@vishcreative0206
@vishcreative0206 6 жыл бұрын
Super nicely explained
@xtremeExcel
@xtremeExcel 6 жыл бұрын
thank you Vishakha.. stay connected for more such videos..!
@Twenty-rl5lc
@Twenty-rl5lc 2 жыл бұрын
Good explanation..can we get the no of rows used count.
@xtremeExcel
@xtremeExcel 2 жыл бұрын
yes. we can either use Worksheet.UsedRange property or we can use something like Cells(rows.count,n).end(xlup).row - to get last row having data in nth column (n can be 1,2,3 ..) or cells(r,columns.count).end(xlToLeft).column - to get last column having data in rth row.
@whattoputin
@whattoputin 5 жыл бұрын
Thank you for such a good walkthrough. I have tried following, but it seems that the value for date and time that I get is in serial number. Is there any way that I could get the normal date and time format straight away?
@xtremeExcel
@xtremeExcel 5 жыл бұрын
yes.. use the function Format( , "DD/MM/YY")
@MohAboAbdo
@MohAboAbdo 3 жыл бұрын
Thank you so match, Sir.
@xtremeExcel
@xtremeExcel 3 жыл бұрын
so nice of you.
@jhuniiidaganzo3588
@jhuniiidaganzo3588 5 жыл бұрын
Great video, i have a question, is it possible to remove the file type extension?
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Yes it is possible
@jhuniiidaganzo3588
@jhuniiidaganzo3588 5 жыл бұрын
@@xtremeExcel thanks for the reply sir. 😊 Much appreciated, i have one more question, how can i automatically hyperlink the file names to its file path? Ive been trying it but has no luck. Thanks.
@karthickgopinath1466
@karthickgopinath1466 4 жыл бұрын
@@xtremeExcel Can you please us how to remove the file type extension. Thanks in advance.
@naresh90sharma
@naresh90sharma 6 жыл бұрын
Very helpful vedio for us Sir can you send code. It's very helpful for me Thanks
@xtremeExcel
@xtremeExcel 6 жыл бұрын
Hello Naresh. Thank you for writing to us. Please watch complete video and I am sure you would not require the code. :-) In case of questions, feel free to write to me.
@marouamrabet7463
@marouamrabet7463 4 жыл бұрын
Hey, thank your explanation, i need your help for find date of workbook's name and copy it to a column, example: "workbookname 01 2020" copy to column "date", 01/2020 on this format . thanks in advance.
@deepanknautiyal5725
@deepanknautiyal5725 3 жыл бұрын
Hi can I perform the same function for multiple paths??
@xtremeExcel
@xtremeExcel 3 жыл бұрын
yeah.. this can be done.. Little modification in code would be required..
@teahk3878
@teahk3878 6 жыл бұрын
I got permission denied if i want to read the root drive letter, e.g. d:\ etc. How do resolve it ? thx
@mintmo
@mintmo 5 жыл бұрын
Great video! Would this work on a shared drive?
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Not sure. You can give a try and let me know.. :-)
@paulogoncalves60
@paulogoncalves60 4 жыл бұрын
@@xtremeExcel It works :)
@vaibhavdiware
@vaibhavdiware 4 жыл бұрын
How Can i add browse Code instead of Paste destination Path In VBA code & Object for Browse code in this Same Code.
@syedmoniruzzamanpabel3264
@syedmoniruzzamanpabel3264 4 жыл бұрын
I am get an error on End(x1up) on below line which show compiler error nextRow = Cells(Rows.Count, 1).End(x1up).Row + 1 and one line is yellow,that is "Function GetFileDetails(objFolder As Scripting.Folder)" what is the solution ???
@cody_svk
@cody_svk 4 жыл бұрын
it is not "x1Up" with number one "1", but with the letter "l" as "xlUp"...the letter "L" just looks like "1", but it is small letter "L"
@Fguindi
@Fguindi 3 жыл бұрын
@@cody_svk you saved my life there!!! Thank you
@Jaceyneo8
@Jaceyneo8 5 жыл бұрын
Hi, thanks for the video.. I have tried But it took more than 2 min to run the macro for 2400 files+. How can I improved it?
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Hello Neo, Please send your file(with code) to me. Regards, Kamal
@Jaceyneo8
@Jaceyneo8 5 жыл бұрын
Hi Kamal, the 1st part is the same. I use sub instead of function which follow your initial script. Let me know if function or sub better. I have added some of the application like calcution, screenupdating, display statusbar etc to reduce the speed to 71sec. But how can I reduce further to below 10sec? Below is the 2nd part script. Sub GetFileDetails(objFolder As Scripting.Folder, IncludeSubFolders As Boolean) Dim objFile As Scripting.File Dim objSubFolder As Scripting.Folder Dim nextRow As Long nextRow = Cells(Rows.Count, 1).End(xlUp).Row + 1 For Each objFile In objFolder.Files If ((objFile.Attributes) = 32) Then Cells(nextRow, 1) = objFile.Name Cells(nextRow, 2) = objFile.ParentFolder Cells(nextRow, 3) = Left(objFile.DateLastModified, InStr(objFile.DateLastModified, " ") - 1) Cells(nextRow, 4) = objFile.Attributes Application.StatusBar = (nextRow - 4) & " files found." nextRow = nextRow + 1 End If Next objFile If IncludeSubFolders Then For Each objSubFolder In objFolder.SubFolders Call GetFileDetails(objSubFolder, True) Next objSubFolder End If End Sub
@naresh90sharma
@naresh90sharma 6 жыл бұрын
Sir, Pls upload new video on cell protected after input value in cell. Sheet should be shared in office common drive not by Gmail etc. Multiple users would be working on the same sheet.
@xtremeExcel
@xtremeExcel 6 жыл бұрын
point noted. will try to create and upload a tutorial for this soon.
@James.Brooke
@James.Brooke 4 жыл бұрын
Great...thanks..here u have a new subscriber👏🏻
@xtremeExcel
@xtremeExcel 4 жыл бұрын
Thanks for connecting James.. :-)
@DalpatMistry
@DalpatMistry Ай бұрын
I have a project where I have to find the latest xml file in specified folder (where multiple folders are there with same or diff file with different modified date)
@angelomartins5032
@angelomartins5032 4 жыл бұрын
Very Good!
@KobaRiley
@KobaRiley 4 жыл бұрын
Super helpful... thanks!!!
@ba177ba18
@ba177ba18 5 жыл бұрын
i pretty much copy the code (except the folder path) on the video but somehow getting Compile error: Variable not defined. on the line 'Function GetFileDetails(objfolder As Scripting.Folder) why is that?
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Seems like you have not included the reference library. Please share your file with me.
@dikidym
@dikidym 4 жыл бұрын
Thanks a lot, I love the Idea and tried myself step by step, but somehow my script is not working (sad).This line with ">" shows me all the time "Run-time error '13' Type mismatch" maybe you know why. Will apriciate any help: nextrow = Cells(Rows.Count, 1).End(xlUp).Row + 1 > For Each objFile In objFolder.Files Cells(nextrow, 1) = objFile.Name Cells(nextrow, 2) = objFile.Path Cells(nextrow, 3) = objFile.Size Cells(nextrow, 4) = objFile.Type Cells(nextrow, 5) = objFile.DateCreated Cells(nextrow, 6) = objFile.DateLastModified
@kjesu2715
@kjesu2715 3 жыл бұрын
Thank you bro...
@rekeemsmith5371
@rekeemsmith5371 6 жыл бұрын
Awesome video! Very helpful.
@madelinedimatulac7333
@madelinedimatulac7333 4 жыл бұрын
How is it if you just intend to get files beginning to a certain value, say example, "macro". It will just get all filenames beginning with "macro"
@hamada201079
@hamada201079 3 жыл бұрын
how do you do the second line of your Excel, where you are able to insert the desired path? Please Help
@srikanth01guntur
@srikanth01guntur 3 жыл бұрын
Would you be able to share the complete code or the template file for ready to use kind
@anmac6910
@anmac6910 4 жыл бұрын
is it possible to get a list of all directories and all its subdirectories as well ?? for example, i want ALL FILES and ALL DIRECTORIES INCLUDING SUBDIRECTORIES AND ALSO PARENT DIRECTORY of C:\Users\[computer user]\Downloads\ ??
@masydell
@masydell 2 жыл бұрын
Thank you so much. Need a small help. I need the file names in MS Teams SharePoint. When I give the SharePoint path, VBA says path not found. Can please help me on it. Thanks in advance
@xtremeExcel
@xtremeExcel 2 жыл бұрын
I have not used sharepoint much. Can you explain how can I replicate on my system?
@johnabram4159
@johnabram4159 4 жыл бұрын
@ 5:30 why do you use createobject that too after you have already referenced MS Scripting Runtime library. You could have just set objFSO = New Scripting.FileSystemObject.
@xtremeExcel
@xtremeExcel 4 жыл бұрын
yes John. you're right..
@dineshnair7535
@dineshnair7535 2 жыл бұрын
Hello Thanks for such a informative video. When I tried using this code it is giving me "Runtime error 91 Object variable /Block variable not set" Can someone help me out with this error ? Thanks in advance
@xtremeExcel
@xtremeExcel 2 жыл бұрын
Hello Dinesh, please share your file.
@saiganesh4626
@saiganesh4626 4 жыл бұрын
Wow!! You are awesome!!
@ДобринАрсов
@ДобринАрсов 5 жыл бұрын
Very helpful video !!!
@B1MPro
@B1MPro 4 жыл бұрын
THANK YOU VERY MUCH.... :)
@xtremeExcel
@xtremeExcel 4 жыл бұрын
Stay connected! :-)
@indiashare4840
@indiashare4840 3 жыл бұрын
Can we get audio file duration using this
@kushmakkar8735
@kushmakkar8735 4 жыл бұрын
While doing same with taking path from shared folder from network...it too slow...how to resolve this..please help
@jonasberg3475
@jonasberg3475 5 жыл бұрын
Hi. I get "variable not defined" when running "xlOp"?
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Hello Jonas, please share your file(and code) with me..
@ankitkapuria8278
@ankitkapuria8278 4 жыл бұрын
It's "xlUp" not xlOp
@abhidarshi
@abhidarshi 3 жыл бұрын
Thank you so much.
@casandramccoy-langley5873
@casandramccoy-langley5873 5 жыл бұрын
Can you help me with recognize text ocr on multiple Ms word files? I need to be able to retitle and date multiple documents (documents are all Ms word and the page is setup the same), please? The date and title have to be from the document itself not the file details in Windows Explorer.
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Hello Casandra - could you please share an example with me?
@LuciaHewitt
@LuciaHewitt 2 жыл бұрын
Thanks for the video. However I could not get it to read from my external drive. :(
@xtremeExcel
@xtremeExcel 2 жыл бұрын
is it shared drive or external hard drive?
@martianboy9886
@martianboy9886 6 жыл бұрын
Can you create a macro that can transfer all your VBA knowledge from your brain to my brain?? .... Thanks in advance
@xtremeExcel
@xtremeExcel 6 жыл бұрын
Yes I can write a macro that will play my videos on your laptop day and night. If you watch them all, that's possible :-p
@Yan48612
@Yan48612 4 жыл бұрын
Hi there, Can someone help with that: "variable not defined" ...it refers to the Sub FetchFileNames(objFolder As Scripting.Folder, IncludeSubFolders As Boolean) I basically copied the code shown @1:36
@abdulsafwan711
@abdulsafwan711 4 жыл бұрын
Is that possible to share this file to my mail
@savithabevuru7967
@savithabevuru7967 2 жыл бұрын
Hi can i get this code ?thank you
@xtremeExcel
@xtremeExcel 2 жыл бұрын
you'll find here.. github.com/kamalgirdher/xtremeExcel Fork this repo and give a star if you like. :-)
@parmindermankoo5797
@parmindermankoo5797 3 жыл бұрын
Downloadable file available?
@radheprajapati2036
@radheprajapati2036 6 жыл бұрын
amazing
@karthikeyanpushparaj8709
@karthikeyanpushparaj8709 4 жыл бұрын
Hi, can please shown the full codes in module 1.
@singwithsrsdeepak1544
@singwithsrsdeepak1544 3 жыл бұрын
Hi How we defined the path by user
@ritishsharma4969
@ritishsharma4969 2 жыл бұрын
how to get these folders in the same order as they are in the main rather than alphabetical order?
@csbhupindersinghahluwalia9515
@csbhupindersinghahluwalia9515 3 жыл бұрын
I need only xlsx file name, is that possible
@naresh90sharma
@naresh90sharma 6 жыл бұрын
Showing error sub or function not defined
@xtremeExcel
@xtremeExcel 6 жыл бұрын
please share your file at my email id shared in the video/
@vatsalushah
@vatsalushah 4 жыл бұрын
Share a file which can be embedded in Excel to run described function
@hans_albert
@hans_albert Жыл бұрын
how i can get the code
@nikhilahuja9302
@nikhilahuja9302 2 жыл бұрын
can we get files dimension from this ?
@xtremeExcel
@xtremeExcel 2 жыл бұрын
If you are asking for image files, then YES..
@nikhilahuja9302
@nikhilahuja9302 2 жыл бұрын
@@xtremeExcel : So can you tell me the Syntax of that ? I wanted to extract file name and dimensions from a folder.
@enesnature5486
@enesnature5486 5 жыл бұрын
Thank you
@suganthi1418
@suganthi1418 5 жыл бұрын
This is very useful video. Can you share me the code? Thanks
@xtremeExcel
@xtremeExcel 5 жыл бұрын
@Suganthi. I do not have the code handy at the moment. Could you please follow step by step instructions in the video and create the file. It would be great if you share that file with me and I'll put it on a shared repository and make it available for all.. Thanks in advance..
@DarshanPatel-yq9hi
@DarshanPatel-yq9hi 4 жыл бұрын
How to use clearcontents and clear only contents from column A starting from cell A3 until last row
@xtremeExcel
@xtremeExcel 4 жыл бұрын
Range("A3:A"& cells(rows.count,1).end(xlUp).row)).clearContents
@TheShinySomething
@TheShinySomething 6 жыл бұрын
I'm attempting to retrieve the duration of audio and video files. Have any ideas?
@TheShinySomething
@TheShinySomething 6 жыл бұрын
technet.microsoft.com/library/ee176615.aspx Only resource I've found, but I have yet to figure out how to integrate it
@nicolasfedrigo881
@nicolasfedrigo881 5 жыл бұрын
really very useful, but how do I if I just want pdf files?
@xtremeExcel
@xtremeExcel 5 жыл бұрын
@Nicolas - you can add a if condition while writing in the cell. The condition would be checking if that file name ends with .pdf Is it clear??
@nicolasfedrigo881
@nicolasfedrigo881 5 жыл бұрын
@@xtremeExcel Yes, thanks
@parmindermankoo5797
@parmindermankoo5797 3 жыл бұрын
Macro enabled Excel spreadsheet to create folder names list with size in mb
@RaspreetSinghJaggi
@RaspreetSinghJaggi 5 жыл бұрын
Thanks a ton..
@xtremeExcel
@xtremeExcel 5 жыл бұрын
Thank you Raspreet :-) Stay Connected.
@bestmobileslaptops9557
@bestmobileslaptops9557 4 жыл бұрын
Can u give me this code and excel sheet?
@xtremeExcel
@xtremeExcel 4 жыл бұрын
See if you could find it here github.com/kamalgirdher/xtremeExcel
@bestmobileslaptops9557
@bestmobileslaptops9557 4 жыл бұрын
@@xtremeExcel ji can i get a macro for copy the tables and update in all other excel sheet?
@hermawanvenom
@hermawanvenom 5 жыл бұрын
How to get last modified user ?
@xtremeExcel
@xtremeExcel 5 жыл бұрын
By default, Microsoft doesn't give option to track last modified user. However you can enable auditing to achieve this. Refer this post: support.microsoft.com/en-us/help/814595/how-to-audit-active-directory-objects-in-windows-server-2003
@avsupport5880
@avsupport5880 2 жыл бұрын
Hi sir Please Add one Row File Duration / File Length
@xtremeExcel
@xtremeExcel 2 жыл бұрын
for media files?
@avsupport5880
@avsupport5880 2 жыл бұрын
@@xtremeExcel Yes
@kurtdhadamus6706
@kurtdhadamus6706 5 жыл бұрын
This is wat I can use, can you sent de code please
@xtremeExcel
@xtremeExcel 5 жыл бұрын
are you facing any challenge in following the code as explained in the video?
Loop Through All Files in a Folder Using VBA/Macros in Excel
13:41
風船をキャッチしろ!🎈 Balloon catch Challenges
00:57
はじめしゃちょー(hajime)
Рет қаралды 83 МЛН
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 147 МЛН
МЕНЯ УКУСИЛ ПАУК #shorts
00:23
Паша Осадчий
Рет қаралды 4,5 МЛН
Excel VBA Introduction Part 22 - Files and Folders (FileSystemObjects)
48:33
VBA to BROWSE & COPY Data from SELECTED File in Excel
10:00
Leila Gharani
Рет қаралды 334 М.
How to Get a Developer Job - Even in This Economy [Full Course]
3:59:46
freeCodeCamp.org
Рет қаралды 3,1 МЛН
An Introductory QGIS Workshop for Beginners
3:49:41
QGIS North America
Рет қаралды 565 М.
Excel VBA | Export List of File Names from Folder
11:55
Essential Excel
Рет қаралды 6 М.
Data Analysis with Python for Excel Users - Full Course
3:57:46
freeCodeCamp.org
Рет қаралды 3,2 МЛН
Excel VBA Macro: List All Files (From a Selected Folder)
8:43
greggowaffles
Рет қаралды 10 М.
Say Goodbye to IF Statements in Excel with SWITCH
7:45
Teacher's Tech
Рет қаралды 574 М.
Excel VBA Loop Thru Folder and Subfolders
10:36
The Excel Cave
Рет қаралды 5 М.
風船をキャッチしろ!🎈 Balloon catch Challenges
00:57
はじめしゃちょー(hajime)
Рет қаралды 83 МЛН