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

Поділитися
Вставка
  • Опубліковано 6 жов 2024
  • Hit LIKE and SUBSCRIBE to our channel if you are interested in more such videos.
    In this tutorial, we explained that how you can extract file details (name, size, type, path, created on, modified date) of all the files inside a folder and it's sub-folders.
    We have used Recursion to solve this problem.
    After watching this video, you'd have fair understanding of how to navigate through files and folders.

КОМЕНТАРІ • 163

  • @compscript7973
    @compscript7973 9 місяців тому +2

    👍Several hours watching videos and I finally found a simple one that works.

  • @davesextraneousinformation9807
    @davesextraneousinformation9807 2 роки тому +3

    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.😀

  • @time_capsul.e
    @time_capsul.e 5 років тому +4

    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.

  • @greenheysg45
    @greenheysg45 5 місяців тому

    Very helpful indeed. Works perfectly. Many thanks!

  • @DalpatMistry
    @DalpatMistry 2 місяці тому +1

    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 2 місяці тому

    Like your explanation - very well & simple

  • @khaledjwahri6516
    @khaledjwahri6516 2 місяці тому

    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

  • @safiafaustino9559
    @safiafaustino9559 5 років тому +2

    Wow! This works! THANK YOU! Your explanation to each line was superb. Liked and Subscribed!

    • @xtremeExcel
      @xtremeExcel  5 років тому

      Thank you! Stay Connected. :-)

  • @knass28
    @knass28 3 роки тому +2

    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?

  • @glennsanbuenaventura9716
    @glennsanbuenaventura9716 5 років тому +1

    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

  • @Mohairp53
    @Mohairp53 2 роки тому

    Thx for sharing as I was just looking into to do the same in VBA.

  • @benvbrunschot
    @benvbrunschot 5 років тому +2

    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.

  • @MrShivdin
    @MrShivdin 4 роки тому +2

    Very good explanation, How can I get the image Dimensions (Length and Width)? Thanks

  • @davidmacminn8658
    @davidmacminn8658 5 років тому +2

    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.

  • @gagarzbipom4254
    @gagarzbipom4254 3 роки тому +1

    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?

  • @Basavaraja_NT
    @Basavaraja_NT Рік тому

    Hi Kamal, Thanks for this video. But kindly walk us through how we can give file directory where we need to check ?

  • @sharmapokkuluri6221
    @sharmapokkuluri6221 6 років тому +3

    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..

  • @viralpatel3798
    @viralpatel3798 4 роки тому +1

    Thanks for sharing such a wonderful macro. It helps me a lot.

  • @AlamMT
    @AlamMT 6 років тому +4

    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 років тому +2

      Set objFolder = objFSO.GetFolder(Sheets("Sheet1").Range("B2").Value)

  • @mileswalker5745
    @mileswalker5745 Рік тому

    Very helpful, thank you for sharing.

  • @RandyValencia
    @RandyValencia 4 роки тому +1

    Thank you so much. Works great with my file.

  • @princechhabra4059
    @princechhabra4059 4 роки тому +1

    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?

  • @k102stone
    @k102stone 5 років тому +3

    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

  • @arielzabatecuizon5147
    @arielzabatecuizon5147 5 років тому +2

    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?

  • @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.

  • @barunpradhan1278
    @barunpradhan1278 2 роки тому +1

    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.

  • @vincysigma
    @vincysigma 3 роки тому +1

    Thats Wonderful tutorial Sir.. Thank you

    • @xtremeExcel
      @xtremeExcel  3 роки тому +1

      Thanks Vincent! Stay connected!

  • @vijaymanjrekar6289
    @vijaymanjrekar6289 3 роки тому

    Thanks a lot this is very good session

  • @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?

  • @DalpatMistry
    @DalpatMistry 13 днів тому

    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)

  • @latasalagaonkar6302
    @latasalagaonkar6302 4 роки тому +1

    Thank you so much I tried many codes but I couldn't able to enter the subfolders thanks a lot😃

  • @angelomartins5032
    @angelomartins5032 4 роки тому +2

    Very Good!

  • @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?

  • @MohAboAbdo
    @MohAboAbdo 3 роки тому +1

    Thank you so match, Sir.

  • @johnabram4159
    @johnabram4159 4 роки тому +2

    @ 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.

  • @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)?

  • @aliciaojeda5718
    @aliciaojeda5718 Рік тому

    Hi! Thanks for the video! Is there's any way to get the author and last person thay modify each file?

  • @vishcreative0206
    @vishcreative0206 6 років тому +2

    Super nicely explained

    • @xtremeExcel
      @xtremeExcel  6 років тому

      thank you Vishakha.. stay connected for more such videos..!

  • @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

  • @kalite02
    @kalite02 4 роки тому +1

    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?

  • @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?

  • @saiganesh4626
    @saiganesh4626 4 роки тому +1

    Wow!! You are awesome!!

  • @syedmoniruzzamanpabel3264
    @syedmoniruzzamanpabel3264 4 роки тому +2

    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 роки тому +2

      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 2 роки тому

      @@cody_svk you saved my life there!!! Thank you

  • @KobaRiley
    @KobaRiley 4 роки тому

    Super helpful... thanks!!!

  • @rekeemsmith5371
    @rekeemsmith5371 5 років тому

    Awesome video! Very helpful.

  • @James.Brooke
    @James.Brooke 4 роки тому +1

    Great...thanks..here u have a new subscriber👏🏻

    • @xtremeExcel
      @xtremeExcel  4 роки тому

      Thanks for connecting James.. :-)

  • @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.

  • @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")

  • @naresh90sharma
    @naresh90sharma 6 років тому +2

    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 років тому +1

      point noted. will try to create and upload a tutorial for this soon.

  • @naresh90sharma
    @naresh90sharma 6 років тому +1

    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.

  • @B1MPro
    @B1MPro 4 роки тому +1

    THANK YOU VERY MUCH.... :)

  • @abhidarshi
    @abhidarshi 3 роки тому

    Thank you so much.

  • @ДобринАрсов
    @ДобринАрсов 5 років тому

    Very helpful video !!!

  • @kjesu2715
    @kjesu2715 2 роки тому

    Thank you bro...

  • @jhuniiidaganzo3588
    @jhuniiidaganzo3588 4 роки тому +1

    Great video, i have a question, is it possible to remove the file type extension?

    • @xtremeExcel
      @xtremeExcel  4 роки тому

      Yes it is possible

    • @jhuniiidaganzo3588
      @jhuniiidaganzo3588 4 роки тому

      @@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.

  • @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.

  • @hamada201079
    @hamada201079 3 роки тому

    how do you do the second line of your Excel, where you are able to insert the desired path?
    Please Help

  • @deepanknautiyal5725
    @deepanknautiyal5725 3 роки тому +1

    Hi can I perform the same function for multiple paths??

    • @xtremeExcel
      @xtremeExcel  3 роки тому +1

      yeah.. this can be done.. Little modification in code would be required..

  • @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

  • @LuciaHewitt
    @LuciaHewitt 2 роки тому +1

    Thanks for the video. However I could not get it to read from my external drive. :(

    • @xtremeExcel
      @xtremeExcel  2 роки тому +1

      is it shared drive or external hard drive?

  • @anmac6910
    @anmac6910 3 роки тому

    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?

  • @Jaceyneo8
    @Jaceyneo8 5 років тому +1

    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

  • @srikanth01guntur
    @srikanth01guntur 3 роки тому

    Would you be able to share the complete code or the template file for ready to use kind

  • @mintmo
    @mintmo 5 років тому +1

    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 :)

  • @dineshnair7535
    @dineshnair7535 2 роки тому +1

    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.

  • @enesnature5486
    @enesnature5486 5 років тому +1

    Thank you

  • @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"

  • @parmindermankoo5797
    @parmindermankoo5797 2 роки тому

    Macro enabled Excel spreadsheet to create folder names list with size in mb

  • @teahk3878
    @teahk3878 6 років тому +1

    I got permission denied if i want to read the root drive letter, e.g. d:\ etc. How do resolve it ? thx

  • @radheprajapati2036
    @radheprajapati2036 6 років тому +2

    amazing

  • @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.

  • @RaspreetSinghJaggi
    @RaspreetSinghJaggi 5 років тому +1

    Thanks a ton..

    • @xtremeExcel
      @xtremeExcel  5 років тому

      Thank you Raspreet :-) Stay Connected.

  • @kushmakkar8735
    @kushmakkar8735 4 роки тому

    While doing same with taking path from shared folder from network...it too slow...how to resolve this..please help

  • @indiashare4840
    @indiashare4840 3 роки тому

    Can we get audio file duration using this

  • @martianboy9886
    @martianboy9886 6 років тому +1

    Can you create a macro that can transfer all your VBA knowledge from your brain to my brain?? .... Thanks in advance

    • @xtremeExcel
      @xtremeExcel  6 років тому +3

      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

  • @ba177ba18
    @ba177ba18 5 років тому +1

    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.

  • @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?

  • @jonasberg3475
    @jonasberg3475 5 років тому +1

    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

  • @vatsalushah
    @vatsalushah 4 роки тому

    Share a file which can be embedded in Excel to run described function

  • @parmindermankoo5797
    @parmindermankoo5797 2 роки тому

    Downloadable file available?

  • @Yan48612
    @Yan48612 3 роки тому

    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

  • @karthikeyanpushparaj8709
    @karthikeyanpushparaj8709 4 роки тому

    Hi, can please shown the full codes in module 1.

  • @naresh90sharma
    @naresh90sharma 6 років тому +2

    Showing error sub or function not defined

    • @xtremeExcel
      @xtremeExcel  6 років тому

      please share your file at my email id shared in the video/

  • @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 роки тому +1

      Range("A3:A"& cells(rows.count,1).end(xlUp).row)).clearContents

  • @hans_albert
    @hans_albert Рік тому

    how i can get the code

  • @csbhupindersinghahluwalia9515
    @csbhupindersinghahluwalia9515 3 роки тому

    I need only xlsx file name, is that possible

  • @savithabevuru7967
    @savithabevuru7967 2 роки тому +1

    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. :-)

  • @abdulsafwan711
    @abdulsafwan711 4 роки тому

    Is that possible to share this file to my mail

  • @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?

  • @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.

  • @nicolasfedrigo881
    @nicolasfedrigo881 5 років тому

    really very useful, but how do I if I just want pdf files?

    • @xtremeExcel
      @xtremeExcel  5 років тому +1

      @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

  • @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..

  • @avsupport5880
    @avsupport5880 2 роки тому

    Hi sir Please Add one Row File Duration / File Length

  • @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

  • @bestmobileslaptops9557
    @bestmobileslaptops9557 4 роки тому +1

    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

  • @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?