+ Reply to Thread
Results 1 to 11 of 11

Reoccuring table problem

  1. #1
    Registered User
    Join Date
    07-24-2012
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    20

    Reoccuring table problem

    So here is my dilemma. I have one file that has a list of employees and their position. I have a second file for their performance review. the way it is set up now is I have 10 different tabs (different roles get asked different questions) and I have to manually add or remove pages from each tab depending on role changes.

    Example: 1st qtr we had 3 assistant managers but 2nd qtr we now have 5. I have to add 2 more pages (not tabs) of tables for those 2 new assistant managers and delete the pages where those two employee roles were previously.

    What I would like to do is still have those 10 tabs, but have it automatically add or remove pages based on the number of people in a specific position.

    Same example as above but instead of me having to add and delete the 2 pages due to role change, I would like for it to do it automatically.

    any ideas?

    Thanks,

    Clint
    Last edited by clint6998; 01-12-2016 at 03:28 PM.

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Reoccuring table problem

    Okay, so by pages on a tab, each assistant Manager (for example) would get a page of questions which is identical to every other assistant managers page of questions? Or, put another way, each page is a table which contains that specific assistant manager's answers to a list of assistant manager questions?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    07-24-2012
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    20

    Re: Reoccuring table problem

    Correct on the first part. When I say pages, I mean what will fit on one page when printed as set by 8.5x11 giving multiple pages on one tab.

    All Asst Managers have the same questions. All regional managers have a set of questions and so on.

    Each tab would then have its own position (ie regional manager, assistant manager, etc).

  4. #4
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Reoccuring table problem

    Why do you need identical multiple pages on a single tab? If all you need it for is printing, then simply print multiple copies of the single page
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  5. #5
    Registered User
    Join Date
    07-24-2012
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    20

    Re: Reoccuring table problem

    I need multiple pages because each page has the employee name on it, and the cells next to each questions are interactive rating the employee from 0%-200% and then totals at the bottom of each page.

    so we create, print, then go back and fill in based on the review to get their score.

  6. #6
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Reoccuring table problem

    Okay, this is probably best done with VBA but since my VBA is intermediate at best, I'll give you a Formula soluition.

    Create a Management Page which contains a list of current management and positions and a table which tabulates those positions (D1:E3 in my workbook). I gave this table a defined name of MgmtCount.

    On each of the tabs specific to positions, set up your first pages as you would like them.
    Select all and right click to format cells and set to custom General;General;;General, OKAY (This makes 0's invisible because your formulas will return 0 when nothing is in the reference cell.
    Set VIEW>Workbook Views to Page Layout so you can see exactly how many rows fit on a page. For example, let's say it's 34.

    In A35, (for example),
    =IF(VLOOKUP($A$1,MgmtCount,2,FALSE)>INT((ROW()-1)/34), INDEX(A$1:A$18, MOD((ROW()-1),34)+1),"")
    Copy that across to fill the page and then down a thousand rows or so (or further if you think you'll need it)

    As you modify Management!A:B, the MgmtCount table will update and the individual tabs will compensate.
    see attachment.
    Attached Files Attached Files
    Last edited by ChemistB; 01-05-2016 at 03:20 PM. Reason: Add attachment

  7. #7
    Registered User
    Join Date
    07-24-2012
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    20

    Thumbs up Re: Reoccuring table problem

    That should work perfectly! I can format it the way I need and just copy the formula. Thank you!

  8. #8
    Registered User
    Join Date
    07-24-2012
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    20

    Re: Reoccuring table problem

    I have another question though.. How do I get the employees name to replace the position on each page?

  9. #9
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Reoccuring table problem

    Can you upload an example with the "page" set up the way you'd like it? (Go Advanced>Manage Attachments)

  10. #10
    Registered User
    Join Date
    07-24-2012
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    20

    Re: Reoccuring table problem

    See attached

    scorecard test.xlsx

  11. #11
    Registered User
    Join Date
    07-24-2012
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    20

    Re: Reoccuring table problem

    Any more ideas? Maybe pull data from an access db?

+ 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. [SOLVED] Reoccuring data
    By SPIG in forum Excel General
    Replies: 4
    Last Post: 03-23-2015, 12:35 PM
  2. Counting reoccuring numbers.
    By aznboy in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 11-28-2014, 09:25 PM
  3. MACRO Assisance...need reoccuring 18 count..
    By H-Man in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-22-2011, 06:55 PM
  4. Reoccuring Formulas
    By ugzruben in forum Excel General
    Replies: 2
    Last Post: 10-05-2010, 03:08 PM
  5. Analyzing (reoccuring) numbers
    By Timmer in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-02-2010, 05:06 PM
  6. How to make a reoccuring if then
    By Calvin Witcher in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 10-16-2008, 07:10 AM
  7. Counting reoccuring dates.
    By R-P in forum Excel General
    Replies: 9
    Last Post: 05-23-2006, 08:55 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