+ Reply to Thread
Results 1 to 39 of 39

Automatic Update of Excel sheet based on several CSVs in a folder

  1. #1
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Question Automatic Update of Excel sheet based on several CSVs in a folder

    Hi Guys,

    I'm working on Dashboard file that uses a bigger table as a base. The bigger table consists of several datapoints that come from multiple CSVs. Now what i'd like to build is a macro/function that allows me to download & store all CSVs in one folder and hit the button update in order to add the newest monthly data. Is something like this possible? I've attached the document for reference.
    Attached Files Attached Files

  2. #2
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    I have a couple of questions. Is the page that you want to update Datas? Are all the CSV files of the same format? is there a way to tell what date they represent (is the date included in the data)?

    Could you post a sample or two CSV files?
    One spreadsheet to rule them all. One spreadsheet to find them. One spreadsheet to bring them all and at corporate, bind them.

    A picture is worth a thousand words, but a sample spreadsheet is more likely to be worked on.

  3. #3
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    hi @dflak,

    Thanks for your answer! Sorry that i was so unspecific!

    - the sheet that needs to be updated eventually is the Datas sheet (last row). What i thougth however to make it a bit easier is to add the last weeks data sheet which should be updated automatically and then the user
    can copy paste to the datas sheet.

    - The CSVs do all have a slightly different layout unfortunately as they are only 1-3 pieces of data in it. So i'd need to prep all of them beforehand at least once. The good thing however is they all follow the same
    naming convention that indicates a date. I attached 4 CSVs to this post for your reference.

    Any chance you can give me any insights on how to set it up so that it pulls in the right numbers?

  4. #4
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    I'm looking at the four CSV files. Are these the only formats we'll see. I notice that two of them have the same format.

    It looks like your week begins on a Monday. So the CSV files were run yesterday (Aug 6th) and are for the week starting Jul 30. So you want me to find the lines of data in the CSV file for Jul 30 and append them to the data on which sheet (Dats of Last Week Data or both)?

    I'll need some help matching the CSV column headings to the headers on the destination sheet(s). See sheet 1 in the attachment.
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Yes, Ideally i'd like some logic that it always takes the Data starting from the Monday.

    The thing is this should work with any Data (Monday) as it would need to be updated weekly. Does that make sense?

    File Matching.JPG

    Thanks a lot for looking into this for me! Let me know if you need more!

  6. #6
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    I still need an answer as to which sheet to update.

    I notice you have 169 named ranges. It appears that the main reason for most of the names is to simplify the formulas by using the named range instead of column letters. I suggest that you consider converting the ranges into Excel Tables. In this case, tables have two advantages:
    1. You can use the column header names in formulas and VB Code which makes them easier to understand and debug.
    2. Tables know how big they are. So instead of using a whole column like BT:BT you can use [Contest PV] and it will cover exactly the number of rows that you need.

    For more information on tables, look at this wiki: http://www.utteraccess.com/wiki/Tables_in_Excel.

    I have enough to get started. At least I can set it up to read the CSV files and tell what type they are so I can parcel out the data.

    You also have 57 connections to outside data sources. These connections seem to be date stamped. Do you add them weekly?

    I am wondering if we can simplify the workbook somehow so you don't have as many connections and named ranges.

  7. #7
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Also, I need a sample Referrers Chart Visit Referrals CSV file.

  8. #8
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Thanks a lot for your answer again.

    Ideally it should update the Datas tab but so far we built it that it updates the Last Week Data tab and we then move it over.
    i've attached the CSV for Referrers as well as the total mapping of all fields incl. the fields in the CSVs. (and made it a bit lighter)

  9. #9
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    OK, that's sort of what I have. I have it updating the Last Week Data tab, but I can come up with an add-on macro to sandwich it into the Datas Tab.

    I am assuming that what is before the square brackets in the map is the CSV File name. If so, I'd like a sample of each file. Given the moderately large number of files, I might change the way I read them and use the map. This will make it possible for you to modify the report if you add columns without having to change any code. To the extent that I can, I like to have things driven by data rather than coding it in. It takes a bit more up front effort, but pays off in maintainability.

  10. #10
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hey @dflak

    Super sorry that i haven't replied yet... I'm sure I created the post last week but never sent it off!!!

    Correct, i took the naming like you started it I attached all the CSV files incl. the mapping file for you. Again, super sorry that I didn't reply earlier!
    Attached Files Attached Files

  11. #11
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    You expect me to remember something from last week!? . I think I remember what I did here. I'll work on it when I get a break

  12. #12
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    This is what I have so far.

    On the Datas sheet, I moved the summary information to the top of the page and froze the panes. I think this makes for a better display. The "bottom line" sometimes looks better on the top. Also it eliminates trying to move this information around to add a last row to the data.

    Also, since the data is in a table, could you consider dropping some of the named ranges in favor of table references?

    I created a map sheet with two helper pivot tables.

    The first pivot table is a unique list of the file names so I only have to process each file only once. Once I process a file, it is moved to the processed directory so it is not processed again.

    Cell I1 is the "Working File" name. It is used to identify the file the code is currently working on and sets the True / False for the Helper Column called Match File. This, in turn, is used to get a list of the Headers in the dashboard that are populated by that file.

    Column L has comments. The code checks to see if the file exists, the column in the file is there and the specified date is also in the file. If there is an error, a comment is written and the file is skipped. So check that these all say, File Processed OK.

    Last Week Data, I made a table of this and there were references to external sources. I overrode those and might have broken something in the process. My intention is to add in the formulas to this row of data so it can be copied / pasted in its entirety. Let me know what information should be coming in from the external links and I will come up with a way to fill them in.

    The last steps are to fix the Last Week Data Sheet and to copy / paste that row to the end of the data.

    When I ran the application against the files you sent, I had one file left over: 2018-08-08-083354.Categories.Top.Chart.KudosGiven.2018-07-02-2018-08-05. Should this be in the map somewhere?

    I only did an "eyeball" QA on this. Please check that the information in the files you gave me wound up in the correct slots.

    I'll take the next steps when you tell me what to do with the last week's data sheet.
    Attached Files Attached Files

  13. #13
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hi Dflak,

    thanks a ton (and sorry again for leaving a week) ... I just tried to update the file myself but had no luck. Can you tell me how I can do that? I.e. where do I have to put my CSVs and what do I have to do afterwards. Sorry ... but when it comes to automatic updating with external data sources, i'm a noob.

  14. #14
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Go to the control panel sheet. Type in the path name to where you have the CSV files in Cell B1. In Cell B2, type in the path name where you want the program to put the CSV files when it is done processing them. Make sure both paths exist.

    Pay attention to Cell B7. The program computes the Monday date on which you want to report. If you need to report a different Monday fill in Cell B7. Otherwise leave it blank to get the default Monday. I had it filled in to test with the data you provided.

    Then run the macro called GetData. Go to View -> Macros. You can use the options to map this to a Control Key such as CTRL-s (I use CTRL-s a lot because it is sort of "obsolete" - it is meant to stop the scroll of text being streamed to the window. Other control keys have more current meanings.)

    Otherwise, I can give you a version with a button on the Control Panel to run the macro.

  15. #15
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Got it, thanks It seems to work (having only had a quick look as well so far! )

    Now... is there a chance that i could add more than 1 week? i.e. if I add a csv with 12 weeks, is there a possibility that it enters all 12 weeks?

  16. #16
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    The way it is designed now is to get only the latest week's data.

    I could give you a range on the Control Panel sheet where you get to select the dates to import. This will take a bit more programming in that I will have to throw out data that already exists for the dates you specify. If this is OK with you, then I can give it a shot.

  17. #17
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    You have free hand! I'm happy to re-load the data afterwards... this will help me soo so much i'm more than happy to do a few things twice

  18. #18
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hi dflak, just checking if you had the time to look at it again?

  19. #19
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Actually, no, but I should have time to look at it this week. You are in my queue but don't hesitate to ping me again if you don't get back to you this week.

  20. #20
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Thanks a lot

  21. #21
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    I think I might have this working.

    Go to the control panel set the directories and add the new dates.
    Attached Files Attached Files

  22. #22
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hi Dflak,

    I have to admit this project dropped off my radar for a bit but is back now. Regarding the old file - is the tab last week Data still needed or is this technically a redundant tab that is not needed to fill in the data into datas?
    if not, feel free to delete it

    Also i'm planning to have an externally facing doc - the one we've been working on and an internal doc that i'd like to use

    As the internally facing doc will be a bit simpler, i would like to change the following:

    1. Change the view from weekly to Monthly in the Datas Column and use the following formats as inputs:

    Main input from the file company_monthly_metrics.xls, visits, pageviews, visit referrals and unique visitors from the files we already defined (however the change there is that the dates are now always starting at the 1st of the month.
    I uploaded 2 file examples for reference)

    Any chance you can help me with this once more?

    Thanks a lot!

  23. #23
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hi @dflak,

    Just checking in if you had any chance to look at the above question... i feel a bit lost at the moment with trying to change the file to a monthly view...

    Cheers,
    Patrick

  24. #24
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    My apologies. I'm in the midst of a major overhaul of one of my reports. It looks like I can cut the time down from about 4 and a half hours to about 10 minutes.

    Also, I am expecting a number of end-of-month reports that I must audit. This will happen either today or tomorrow.

    I will have to re-visit the requirement to get back to the point where I left off. I will put this on my calendar for later this week.

  25. #25
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    No worries, Thanks a lot! also - from 4h to 10 min... that's what i call time saving!

  26. #26
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hi Dflak,

    I hope your overhaaul of your reports went well and you got the expected time savings. I just wanted to ask if you have any chance to look at the Analysis sheet in this thread again?
    Thanks a lot!

    Patrick

  27. #27
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    I'm afraid not. I had cataract surgery on Monday. It was routine and I am doing fine, but it has put me behind schedule. I'll have to get to it the middle of next week.

  28. #28
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Oh! Hope you recover well and get well quickly! Thanks for keeping this in your backlog!

  29. #29
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    I am just getting back to this issue now. The light bulb is flickering and I recall that I will have to set up some directories and re-download the CSV files. This will take a bit of time.

    It looks like the new input data has month start dates instead of week start dates. So I will need some new data to reflect this. On the control panel, I can give you drop-downs for month and year. I will compute the start and end dates from this. It will also get around some regional settings issues. I will assume that I can limit Year to current year and the immediate past year. I'll do data checks to assure you don't start after you end .

    I think I see the parts of the code where I compute weekly dates. I can make substitutions to compute monthly dates.

    Please post new source CSV files. Zip them up and attach them.

    I am not using the Last Week Data tab.

  30. #30
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hi dflak,

    sorry for the super late answer! I've attached a selection of CSVs which i think should give you the new monthly structure. Let me know if you need more

    Thank you so much for your help!

  31. #31
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Ok, you threw another change in here that causes me to go back to the drawing board. I was expecting the source file names to remain the same. E.G. Traffic.Chart.Visits.csv, now this file is called 2018-12-10-105203.Traffic.Chart.Visits.2018-07-01-2018-11-30.csv.

    I need to know what the naming conventions now are. I will now have to get a list of files before processing them and then compare them to the list of expected files to see if the pattern matches.

  32. #32
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hi dflak,

    I think the name structure did not change - see the documents i uploaded previously to our conversation.
    As far as i can see, the filename is always built the same:

    2018-12-14-043937.Traffic.Chart.PageViews.2018-11-13-2018-12-1

    [Date of data pull]-[???].[Name Chart type].[name of metric]-[date range]

    I've attached a mapping file again for your reference
    Attached Files Attached Files

  33. #33
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    OK, I have this going. What I don't have is all the formulas in rows 2:11 - There were circular reference errors. I'll have to go back to the original and look at them. I think I can basically "clone" the formulas I do have.

    On the control panel, enter in the month and years you want to track. I added some helper cells and conditional formatting to help with this. You will get a warning in cells D2 and D3 if you try to enter an end date less than the start date. Cells B6:D6 calculate the next expected date. You will get a warning in cells B2:C2 if the start date doesn't match this. You do NOT want to overlap dates. That is, if you have Oct 2018 already in the data, you do not want to import it again.
    Attached Files Attached Files

  34. #34
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hi dflak,

    Thanks a lot! it works a treat! there is one minor issue with it though - the fact that the documents get moved from to the process folder means that for Visit numbers the macro cant find the numbers for the mobile, desktop and tablet visits as it moves the document after filling the total visits.
    Is there any chance we can change the formula that it a) takes all the 4 columns or b) leaves that one in until the tablet column is filled?

    Thanks a lot

  35. #35
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    I'm not following the question. Yes, there are some blanks in the data because the files to populate them were not provided.

    I can see a weakness in the design. All the files need to be processed at the same time. I can think of a two ways around this:

    1. Do a sweep of the files in the inbound directory and warn you if any files are missing.

    2. Write the data to a database and compile it as files are read, then use formulas on the datas sheet to fill in the data. This is a more robust solution, and although it might take a rewrite of the code, it isn't that difficult to do.

  36. #36
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    Hi dflak,

    It wasn't regarding the missing files. Let me try to explain it better - i realized my initial explanation wasn't very good.

    Columns D,E,F & G are all pulled from the same CSV (Traffic.Chart.Visits). As far as I understand the mechanism that is applied now it works as follows: It reads the CSV, fills one column and then moves it to the processed folder. This leads to the issue that columns E, F & G will always stay empty and trigger a "document not found" error, since they need the previously moved csv.
    Is there a chance that we can change the logic to account for the fact that for D,E, F & G we have one Source file for four columns versus all others where there is one file per column?
    thanks,
    dlinen

  37. #37
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    I am going with option #2 above. This should take care of the issue. I have the basic program already running, but it has two major bugs. I have the tools I need to track them down. I hope to have them cleaned up today.

    The new scheme will be much more flexible: all you do is put the files in the folder. Don't worry about dates. Also you will have data in a format that can be used easily for other reports.

  38. #38
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    I got the bugs ironed out.

    Here is a very workable prototype. Missing are:

    Conditional formatting: I found it easier to eliminate it and re-establish it than try to preserve it.

    The Summary formulas at the top: same reasoning.

    And a small bit of code to add a new line for a date when it is needed.

    Here is how the new system works. You put the files you want to import into the in-basket. It doesn’t matter if it is a complete set.

    The program opens them and extracts the data. It gets the mapped file name from the name of the file. Bug number 1 was that this wasn’t happening correctly then I found that the octothorpe (Yes, that’s what a pound sign / hash / # is really called.) was causing a problem with the match. I found a work-around for it.

    The program also gets the dates and column headers from the file and the values and puts all of it into a data table with the format:

    Date | Mapped File Name | Header Name | Value.

    What makes a record unique is the combination of date, file name and header name – a thing I call the composite after its database counterpart: composite key. As long as the file names and headers don’t change then the only thing that can change is the date.

    As the program reads the file, it checks the composite keys in the existing table against the one it generates on the spot. If there is not a match, then this means it is a new record and the information is appended to the table.

    If there is a match, then the program finds the record with the matching composite and updates its value field.

    With this scheme, it is impossible to collect duplicate information so even if the new files have data overlap with existing data, it is not an issue.

    Since each record is unique and there is no duplicate data, we can use SUMIFS to get the record’s value. Here is one of the formulas by way of example:

    =SUMIFS(Table_Data[Value],Table_Data[Date],[@[1st day of month]],Table_Data[File],"Traffic.Chart.PageViews",Table_Data[Item],"Total Page Views")

    These formulas are plugged into the table on the Datas sheet.

    This is a much more effective system that trying to “map” a value from a cell in one file to a cell in another file. Also this data are arranged in a good format for pivot table analysis so you can generate a number of ad-hoc programs without much effort.
    I’ll clean it up, but the only information you now need on the Control Panel Sheet is the Read CSV button and what is currently in cells G2 and G3 which tell you where to read the files and where to put them when the program is done reading them.

    I did not have a complete set of CSV files, so I had to make up some data on rows 67 and below to test my formulas. Eventually, these records will be updated with good data or you can remove these rows.

    Feel free to play with this version and also check out the values especially those I had to make up while testing.

    I’ll get back to work with the cleanup (top formulas and conditional formatting).
    Attached Files Attached Files

  39. #39
    Registered User
    Join Date
    05-27-2016
    Location
    Zurich
    MS-Off Ver
    Office 2016
    Posts
    61

    Re: Automatic Update of Excel sheet based on several CSVs in a folder

    hi dflak,

    sorry for the super late answer but last month was super busy and then i've been off for holidays so i only get to it now. I will look at it now. but thank you so so much for your support here!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Opening all CSVs in a folder, formatting and then printing.
    By taylorsm in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-22-2018, 06:25 PM
  2. Update File Name in folder automatically in Excel sheet
    By poonam.ss in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 04-02-2017, 08:15 AM
  3. Automatic email based on excel sheet cell value
    By caf20012 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-11-2014, 05:55 AM
  4. [SOLVED] Help needed on project-Automatic background update Add-In to new version in network folder
    By mc84excel in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 03-17-2013, 09:38 PM
  5. Automatic sheet update
    By dgkindy in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-23-2008, 11:56 AM
  6. Automatic updating a sheet when a file is added to a folder
    By teacher5th in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-24-2007, 09:18 PM
  7. automatic update from excel sheets into a single sheet
    By indira in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-15-2007, 10:34 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1