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

Поделиться
HTML-код
  • Опубликовано: 24 дек 2024

Комментарии • 163

  • @compscript7973
    @compscript7973 Год назад +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.😀

  • @DalpatMistry
    @DalpatMistry 4 месяца назад +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?

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

  • @davidmacminn8658
    @davidmacminn8658 6 лет назад +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.

  • @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 3 года назад

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

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

  • @aliciaojeda5718
    @aliciaojeda5718 2 года назад

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

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

  • @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 6 лет назад +2

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

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

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

  • @johnabram4159
    @johnabram4159 5 лет назад +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.

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

  • @sharmapokkuluri6221
    @sharmapokkuluri6221 6 лет назад +4

    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

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

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

  • @vaibhavdiware
    @vaibhavdiware 4 года назад +1

    How Can i add browse Code instead of Paste destination Path In VBA code & Object for Browse code in this Same Code.

  • @khaledjwahri6516
    @khaledjwahri6516 5 месяцев назад

    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

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

  • @hamada201079
    @hamada201079 3 года назад

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

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

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

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

  • @masydell
    @masydell 3 года назад

    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  3 года назад

      I have not used sharepoint much. Can you explain how can I replicate on my system?

  • @DalpatMistry
    @DalpatMistry 3 месяца назад

    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)

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

  • @MrShivdin
    @MrShivdin 4 года назад +2

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

  • @srikanth01guntur
    @srikanth01guntur 3 года назад

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

  • @jhuniiidaganzo3588
    @jhuniiidaganzo3588 5 лет назад +1

    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.

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

  • @k102stone
    @k102stone 6 лет назад +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

  • @princechhabra4059
    @princechhabra4059 5 лет назад +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?

  • @kushmakkar8735
    @kushmakkar8735 4 года назад

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

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

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

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

  • @DalpatMistry
    @DalpatMistry 4 месяца назад

    Like your explanation - very well & simple

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

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

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

  • @indiashare4840
    @indiashare4840 3 года назад

    Can we get audio file duration using this

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

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

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

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

  • @ritishsharma4969
    @ritishsharma4969 2 года назад

    how to get these folders in the same order as they are in the main rather than alphabetical order?

  • @Twenty-rl5lc
    @Twenty-rl5lc 3 года назад

    Good explanation..can we get the no of rows used count.

    • @xtremeExcel
      @xtremeExcel  3 года назад

      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.

  • @singwithsrsdeepak1544
    @singwithsrsdeepak1544 3 года назад

    Hi How we defined the path by user

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

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

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

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

  • @csbhupindersinghahluwalia9515
    @csbhupindersinghahluwalia9515 4 года назад

    I need only xlsx file name, is that possible

  • @LuciaHewitt
    @LuciaHewitt 3 года назад +1

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

    • @xtremeExcel
      @xtremeExcel  3 года назад +1

      is it shared drive or external hard drive?

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

  • @greenheysg45
    @greenheysg45 7 месяцев назад

    Very helpful indeed. Works perfectly. Many thanks!

  • @abdulsafwan711
    @abdulsafwan711 4 года назад

    Is that possible to share this file to my mail

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

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

  • @Mohairp53
    @Mohairp53 2 года назад

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

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

  • @parmindermankoo5797
    @parmindermankoo5797 3 года назад

    Downloadable file available?

  • @vishcreative0206
    @vishcreative0206 6 лет назад +2

    Super nicely explained

    • @xtremeExcel
      @xtremeExcel  6 лет назад

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

  • @hans_albert
    @hans_albert Год назад

    how i can get the code

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

  • @vatsalushah
    @vatsalushah 4 года назад

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

  • @karthikeyanpushparaj8709
    @karthikeyanpushparaj8709 4 года назад

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

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

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

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

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

  • @miles_mtb
    @miles_mtb 2 года назад

    Very helpful, thank you for sharing.

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

  • @viralpatel3798
    @viralpatel3798 4 года назад +1

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

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

  • @latasalagaonkar6302
    @latasalagaonkar6302 4 года назад +1

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

  • @vijaymanjrekar6289
    @vijaymanjrekar6289 3 года назад

    Thanks a lot this is very good session

  • @James.Brooke
    @James.Brooke 4 года назад +1

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

    • @xtremeExcel
      @xtremeExcel  4 года назад

      Thanks for connecting James.. :-)

  • @vincysigma
    @vincysigma 3 года назад +1

    Thats Wonderful tutorial Sir.. Thank you

    • @xtremeExcel
      @xtremeExcel  3 года назад +1

      Thanks Vincent! Stay connected!

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

  • @parmindermankoo5797
    @parmindermankoo5797 3 года назад

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

  • @RandyValencia
    @RandyValencia 4 года назад +1

    Thank you so much. Works great with my file.

  • @rekeemsmith5371
    @rekeemsmith5371 6 лет назад

    Awesome video! Very helpful.

  • @KobaRiley
    @KobaRiley 4 года назад

    Super helpful... thanks!!!

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

  • @angelomartins5032
    @angelomartins5032 4 года назад +2

    Very Good!

  • @saiganesh4626
    @saiganesh4626 4 года назад +1

    Wow!! You are awesome!!

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

  • @ДобринАрсов
    @ДобринАрсов 6 лет назад

    Very helpful video !!!

  • @MohAboAbdo
    @MohAboAbdo 3 года назад +1

    Thank you so match, Sir.

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

  • @radheprajapati2036
    @radheprajapati2036 6 лет назад +2

    amazing

  • @kjesu2715
    @kjesu2715 3 года назад

    Thank you bro...

  • @B1MPro
    @B1MPro 5 лет назад +1

    THANK YOU VERY MUCH.... :)

  • @abdulsafwan1840
    @abdulsafwan1840 5 лет назад

    can you send me this file please

  • @abhidarshi
    @abhidarshi 3 года назад

    Thank you so much.

  • @enesnature5486
    @enesnature5486 5 лет назад +1

    Thank you