+ Reply to Thread
Results 1 to 21 of 21

Summary Sheet For Drawings Log with Multiple revisons

  1. #1
    Forum Contributor
    Join Date
    07-12-2015
    Location
    Dubai,UAE
    MS-Off Ver
    Office 365
    Posts
    433

    Summary Sheet For Drawings Log with Multiple revisons

    Hi,

    My problem is quite simple but I can't quite find a workaround.
    I have to maintain several logs for drawings of various disciplines.The summary for these drawings have to be provided two times a week.
    I have attached an extract of the sample log sheet.

    My problem is that I cannot create a summary sheet to show all the required information such as Total No.submitted,Hw many with A /B/C status,How many have been received back with status,How many are still not received etc. I have an issue with the revisions for the drawings;the latest revision status has to be counted for a drawing i.e if rev 3 of a drawing is A status,that should be counted.This also creates a problem for me when counting the total no of drawings; I need only the latest revision to be counted for a specific drawing number.

    Another problem is that the list gets updated daily;so have to create a dynamic range so that I dont have to update the formulas every now and then.

    Also it would be helpful if anyone can guide to use pivot tables for this issue.



    Thanks in advance.
    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,926

    Re: Summary Sheet For Drawings Log with Multiple revisons

    I am a bit confused. Is what you are showing what you get or is it what you want to show? Either way, please provide the other piece. I am particularly interested in how you get the raw data and what it looks like.
    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
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi Chullan,

    I think I have grasped what you are looking for.
    See attached file.
    The summary table is to the right of the data, in the tan area.

    Criteria that are incorporated:

    1. Total No. submitted (Column K)
    2. How many with A, B, C status (Columns L, M, N)
    3. How many have a Received status (Column O)
    4. How many still not received (Column P)
    5. The latest revision number (Column Q)
    6. The latest status letter (Column R).
    7. Dynamic! The summary table will update automatically as you enter data. If the data starts to outgrow the summary field just copy the formulas downward.


    Regarding using Pivot table. I tried working your different criteria into a Pivot table. While it might be possible, I think it will take several pivot tables to accomplish. If you use pivots, they will have to be updated and refreshed every time you update or add to your data fields.

    Take the attached file for a spin. Let me know if you want any changes.

    Hope this helpful.
    Attached Files Attached Files

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

    Re: Summary Sheet For Drawings Log with Multiple revisons

    The key to the enterprise is Excel Tables. Some of the advantages of Excel tables are that they know how big they are (number of rows and columns) and that they remember formulas and copy them down automatically.

    I took your source data and named it Table_Source. I took the summary and named it Table_Summary.

    I made a small pivot table from the source data and put it on the parameters page. A pivot table is the quickest and easiest way I know to get a unique list of values. Since this pivot table is reading a table as its source data, it will always reference exactly the right number of rows.

    I “overlaid” the pivot table with a named dynamic range: Drawing_Numbers =OFFSET(Parameters!$A$2,0,0,COUNTA(Parameters!$A:$A)-1,1)

    I also changed one formula (the one that looks up the drawing title) to show another advantage of tables: natural language syntax: =IFERROR(INDEX(Table_Source,MATCH([@[Drawing Numbers]],Table_Source[Drawing No.],0),3),"").

    Otherwise I kept your original formulas.

    I used VB code to do the copying.

    First I cleared out all the old data (ClearTable). Then I used a pointer (cl) to go down the list of drawing numbers and insert them into the Summary Table. Merely populating the first cell is enough to kick off all the formulas.

    To learn more about tables, see this article: http://www.utteraccess.com/wiki/inde...ables_in_Excel.

    You may have to change some code. If the summary and source are on different pages you will have to change the page name. Also the column that gets populated by the pointer (Column I in this case), might have to be changed depending on where you move the Summary Table.

    You will notice that there isn't a lot of code: Excel Tables did most of the work for me.
    Attached Files Attached Files

  5. #5
    Forum Contributor
    Join Date
    07-12-2015
    Location
    Dubai,UAE
    MS-Off Ver
    Office 365
    Posts
    433

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi,

    You've done a great work there,but would require a few tweaks more..
    1. Counting the number of drawings :- For a serial number,the latest revision will be only counted in the total no. of drawings.In this extract,it will be 4.
    2. Summary sheet :- The actual purpose of this exercise was to prepare a summary sheet for drawings of various disciplines ( I attached the electrical extract yesterday)
    The summary sheet sample has been attached with this post.( Recent column in the table means the documents which are not yet received back but 14 days have not elapsed since their submission)
    3. Extra Requirement : - In the summary sheet,I have a column called overdue ( It means the documents submitted before 14 days and still not received back).Please include it.
    4. Formulas used :- It would be helpful to troubleshoot in future if you could explain the formulas used.

    Thanks in advance..
    Attached Images Attached Images
    Last edited by chullan88; 05-25-2016 at 09:53 AM.

  6. #6
    Forum Contributor
    Join Date
    07-12-2015
    Location
    Dubai,UAE
    MS-Off Ver
    Office 365
    Posts
    433

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi,

    Thanks a lot for your effort..
    But I find the attachment a bit complex for my level of expertise.

  7. #7
    Forum Contributor
    Join Date
    07-12-2015
    Location
    Dubai,UAE
    MS-Off Ver
    Office 365
    Posts
    433

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Quote Originally Posted by dflak View Post
    The key to the enterprise is Excel Tables. Some of the advantages of Excel tables are that they know how big they are (number of rows and columns) and that they remember formulas and copy them down automatically.

    I took your source data and named it Table_Source. I took the summary and named it Table_Summary.

    I made a small pivot table from the source data and put it on the parameters page. A pivot table is the quickest and easiest way I know to get a unique list of values. Since this pivot table is reading a table as its source data, it will always reference exactly the right number of rows.

    I “overlaid” the pivot table with a named dynamic range: Drawing_Numbers =OFFSET(Parameters!$A$2,0,0,COUNTA(Parameters!$A:$A)-1,1)

    I also changed one formula (the one that looks up the drawing title) to show another advantage of tables: natural language syntax: =IFERROR(INDEX(Table_Source,MATCH([@[Drawing Numbers]],Table_Source[Drawing No.],0),3),"").

    Otherwise I kept your original formulas.

    I used VB code to do the copying.

    First I cleared out all the old data (ClearTable). Then I used a pointer (cl) to go down the list of drawing numbers and insert them into the Summary Table. Merely populating the first cell is enough to kick off all the formulas.

    To learn more about tables, see this article: http://www.utteraccess.com/wiki/inde...ables_in_Excel.

    You may have to change some code. If the summary and source are on different pages you will have to change the page name. Also the column that gets populated by the pointer (Column I in this case), might have to be changed depending on where you move the Summary Table.

    You will notice that there isn't a lot of code: Excel Tables did most of the work for me.
    Hi,

    Thanks a lot for your effort..
    But I find the attachment a bit complex for my level of expertise.

  8. #8
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi Chullan,

    I want to help with this. In order to do that I need you to provide a lot more than you have.
    I provided what you asked for per the criteria in your initial post using only a sample of the spreadsheet you provided. Which was several hours of work and wasn't easy.

    Now you show a picture of what appears to be a working Summary. The initial spreadsheet sample you provided didn't indicate "drawings of various disciplines". Nor did you mention a 14 day overdue criteria.
    You stated "I attached the electrical extract yesterday". Extract?
    You asking for formulas to provide summary information and all you provide is an Extract!
    In order to summarize something you need the whole picture.

    Would you be able to construct a building based on just plumbing schematics?

    Help me help you. I think this "exercise" is all very doable.

    However, in order for me to be able to help with this, you need to provide a sanitized working copy of your spreadsheet.

    As for explaining the formulas, I will try.

    I really do want to be able to help with this.

    Cheers

  9. #9
    Forum Contributor
    Join Date
    07-12-2015
    Location
    Dubai,UAE
    MS-Off Ver
    Office 365
    Posts
    433

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Quote Originally Posted by southward View Post
    Hi Chullan,

    I want to help with this. In order to do that I need you to provide a lot more than you have.
    I provided what you asked for per the criteria in your initial post using only a sample of the spreadsheet you provided. Which was several hours of work and wasn't easy.

    Now you show a picture of what appears to be a working Summary. The initial spreadsheet sample you provided didn't indicate "drawings of various disciplines". Nor did you mention a 14 day overdue criteria.
    You stated "I attached the electrical extract yesterday". Extract?
    You asking for formulas to provide summary information and all you provide is an Extract!
    In order to summarize something you need the whole picture.

    Would you be able to construct a building based on just plumbing schematics?

    Help me help you. I think this "exercise" is all very doable.

    However, in order for me to be able to help with this, you need to provide a sanitized working copy of your spreadsheet.

    As for explaining the formulas, I will try.

    I really do want to be able to help with this.

    Cheers
    Hi southward,

    I totally agree with your point and apologise for my mistake.

    I have attached a copy of the entire workbook.It has 5 sheets;a summary sheet and logs for 4 disciplines namely Structural,Architectural,Mechanical and Electrical

    Summary Sheet


    Total No - The total number of drawings ( For a drawing number,only the latest revision will be counted and this will also only be used for counting the no of items with a particular status)
    Status ( No of A ,B ,C etc.)
    Recent Documents No ( No of documents which are submitted and not yet returned ; days elapsed from date of submission < 14)
    Overdue ( No of documents which are submitted and not yet returned ; days elapsed from date of submission > 14)


    Log Sheets ( 4 disciplines )

    The log sheet has subheadings for each building and subheadings ( This is required as sometimes buildingwise logs needs to be generated for management)
    The logs maybe updated by 2 or 3 members other than me ( It is better to password protect the formulas )


    Please let me know if you need anymore details.

    Thanks in advance
    Attached Files Attached Files

  10. #10
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi Chullan,

    Having the whole picture really helps.
    I think I have provided what you are looking for.
    See attached.

    Let me know if you need more or some tweaking.

    Cheers
    Attached Files Attached Files

  11. #11
    Forum Contributor
    Join Date
    07-12-2015
    Location
    Dubai,UAE
    MS-Off Ver
    Office 365
    Posts
    433

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Quote Originally Posted by southward View Post
    Hi Chullan,

    Having the whole picture really helps.
    I think I have provided what you are looking for.
    See attached.

    Let me know if you need more or some tweaking.

    Cheers

    Hi southward,

    There seems to be a problem with the status counter.
    ( For Eg. in Structural there are 13 drawings in total; but the status counter shows 14 A,7B etc.)
    I think this is because they are counting all the revisions.

    Personally I liked your previous excel sheet.I would like you to just tweak it a bit.
    The workbook will have 4 log sheets,4 discipline summaries and a master summary.

    The log sheets will be where data entry is made.
    For each discipline,there will be an automatically generated summary sheet as you prepared - Attached pic ( Need to add 'overdue" column)
    And from these four discipline summaries,we can create a master summary sheet.

    Additional Notes:

    If we use this sheet,will it be possible to use subheadings in the log sheet?
    Also,I would like to have two more columns in the log sheet:
    "Latest Submission" and "Latest Received"

    If a drawing has 4 revisions,for rev 0-3 the value in column "Latest Submission" will be FALSE and for rev 4 value will be "LATEST"

    The same case for Latest Received.


    Thanks in advance.
    Attached Images Attached Images
    Last edited by chullan88; 05-31-2016 at 01:24 AM.

  12. #12
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi Chullan,

    I think I understand what you are looking for. It appears to be an achievable goal.
    I'll work on it and let you know as soon as I have something working.

    Cheers

  13. #13
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi Chullan,

    I think I understand what you are looking for. It appears to be an achievable goal.
    I'll work on it and let you know as soon as I have something working.

    Cheers

  14. #14
    Forum Contributor
    Join Date
    07-12-2015
    Location
    Dubai,UAE
    MS-Off Ver
    Office 365
    Posts
    433

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Quote Originally Posted by southward View Post
    Hi Chullan,

    I think I understand what you are looking for. It appears to be an achievable goal.
    I'll work on it and let you know as soon as I have something working.

    Cheers
    Thanks southward

  15. #15
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi Chullan,

    I am making progress. I have a plan and structure in place. However, I have run into a snag.

    The best way I can figure to make this work the way you want is to use Dynamic Named Ranges.
    Dynamic Named Ranges are needed because you expect your data tables to grow on a regular basis.
    Dynamic Named Ranges auto adjust to match the length of your data. Without them you would have to update your data array formulas constantly.
    If you use formulas that look at an entire column it will significantly increase the computation time for the formula's.

    The main problem that arises from using Dynamic Named Ranges on your discipline data sheets is the number of blank cells.
    The blank spots represent the separation points that designate the different systems within the disciplines.
    Unfortunately, the blank cells cause the Dynamic Named Ranges to come up short. Which causes the formulas not to see all the data.

    My solution to this to make a slight modification to the data sheets.
    I realize that this might be difficult due to the different disciplines being managed by different departments/personnel.
    If you can establish a data structure that is without blanks, at least in the first few columns, it would be much more functional for getting results. It is OK to have blanks in the Rev, Status and Date columns.

    Please see the attached file to see the recommended data structure.

    If you can accept this type of structure, which is doesn't have any blanks within the first several column, I can provide the discipline summaries and the master summaries that you want.

    Hope this makes sense.
    Let me know.

    Cheers,
    Attached Files Attached Files

  16. #16
    Forum Contributor
    Join Date
    07-12-2015
    Location
    Dubai,UAE
    MS-Off Ver
    Office 365
    Posts
    433

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Quote Originally Posted by southward View Post
    Hi Chullan,

    I am making progress. I have a plan and structure in place. However, I have run into a snag.

    The best way I can figure to make this work the way you want is to use Dynamic Named Ranges.
    Dynamic Named Ranges are needed because you expect your data tables to grow on a regular basis.
    Dynamic Named Ranges auto adjust to match the length of your data. Without them you would have to update your data array formulas constantly.
    If you use formulas that look at an entire column it will significantly increase the computation time for the formula's.

    The main problem that arises from using Dynamic Named Ranges on your discipline data sheets is the number of blank cells.
    The blank spots represent the separation points that designate the different systems within the disciplines.
    Unfortunately, the blank cells cause the Dynamic Named Ranges to come up short. Which causes the formulas not to see all the data.

    My solution to this to make a slight modification to the data sheets.
    I realize that this might be difficult due to the different disciplines being managed by different departments/personnel.
    If you can establish a data structure that is without blanks, at least in the first few columns, it would be much more functional for getting results. It is OK to have blanks in the Rev, Status and Date columns.

    Please see the attached file to see the recommended data structure.

    If you can accept this type of structure, which is doesn't have any blanks within the first several column, I can provide the discipline summaries and the master summaries that you want.

    Hope this makes sense.
    Let me know.

    Cheers,
    Hi Southward,

    This is ok for me with respect to the systems subdivision.
    I have only a concern for the grouping by building.
    Please check if formulas will work if we add an extra column as shown in the attached pic.

    Even if it doesnt work,its not a big deal; ( we can add a column for the building )


    Thanks in advance
    Attached Images Attached Images

  17. #17
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    I think that would be OK. I'll work it into the data sheet. As long as there are several columns such as D and E that don't have blanks in them.

    Cheers

  18. #18
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi Chullan,

    I think the attached file meets all of your requests.

    There is a summary sheet for each of the disciplines and a master summary.
    The summary sheets work with a combination of pivot tables and formulas.
    The summary sheets include Conditional Formatting to highlight the dates relative to "recent" submissions (less than 14 days) and "overdue" submissions (greater than 14 days).

    The master summary pulls data from the summary sheets.

    The "Refresh Summary" button on the master Summary sheet is used when data is added or changed to the "discipline" sheets.

    Take it for a spin.

    I am working on an Explanation version of the spreadsheet to show how the different formulas work.

    Cheers
    Attached Files Attached Files

  19. #19
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi Chullan,

    Hope you have had a chance to work with the latest version of the Drawing Log.

    Here is the explanation I promised. I hope it makes sense and is helpful.

    Let me know if you have any issues or questions.

    Cheers

  20. #20
    Forum Contributor
    Join Date
    07-12-2015
    Location
    Dubai,UAE
    MS-Off Ver
    Office 365
    Posts
    433

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Quote Originally Posted by southward View Post
    Hi Chullan,

    Hope you have had a chance to work with the latest version of the Drawing Log.

    Here is the explanation I promised. I hope it makes sense and is helpful.

    Let me know if you have any issues or questions.

    Cheers
    Hi Southward,

    Thats an excellent work!!
    It will take some time for me to get the hang of those formulas...
    I am marking the thread as "SOLVED"
    Cheers!!!

  21. #21
    Valued Forum Contributor
    Join Date
    05-08-2015
    Location
    Uvalde, TX
    MS-Off Ver
    2010
    Posts
    720

    Re: Summary Sheet For Drawings Log with Multiple revisons

    Hi Chullan,

    I am glad I could be of some assistance.
    Let me know if you need more help with it.

    Cheers

+ 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. Replies: 1
    Last Post: 06-03-2015, 06:27 PM
  2. Copy data from multiple sheet in multiple books into a new summary workbook
    By dobba in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-13-2014, 08:14 AM
  3. Replies: 0
    Last Post: 07-29-2013, 03:00 AM
  4. [SOLVED] Summary sheet - copy cell contents from multiple sheets to one summary sheet
    By jsmity in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-21-2013, 10:32 AM
  5. Create a summary from multiple sheets on a master/summary sheet
    By detribus in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-07-2012, 08:04 PM
  6. Copying a template sheet and putting those multiple sheets data into a summary sheet
    By John Wolfe in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-18-2011, 06:29 PM
  7. How to write macro to add summary from multiple sheet to final sheet
    By Santoshmoni in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-03-2011, 09:08 AM

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