+ Reply to Thread
Results 1 to 6 of 6

Help: I have a master tab and want other tabs to automatically update

  1. #1
    Registered User
    Join Date
    03-24-2014
    Location
    Utah, USA
    MS-Off Ver
    Microsoft Excel for Mac 2011
    Posts
    3

    Help: I have a master tab and want other tabs to automatically update

    Hello,

    I have a workbook that has a master tab with all of our clients as well as certain details. For example, one of the columns is "Partner", i.e. which partner is over the client. So when we add a new client to the master tab, I enter the company name and which partner is over the client. I have separate tabs for each partner, and so I have to manually copy and paste the row of data to the corresponding tab.

    I am wondering if there is a way to have the corresponding tab automatically update with that row of data. So lets say I have a new client called Company X and Peter is over Company X. When I enter Company X's information onto the master tab, I would like Peter's tab to automatically update with Company X's information as well.

    Is that something that can be done in Excel?

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Help: I have a master tab and want other tabs to automatically update

    You're working harder than you need to. The "partner" sheets aren't needed.

    On your MAIN sheet, click on the row that has the titles for all your columns, usually that's row 1.

    Now click on DATA > FILTER and drop downs will appear in all your title cells.

    Click on the PARTNER column and select only ONE partner....

    Voila! Now you're looking at only that partner's rows. Edit them, print the page, whatever.

    Then turn on a different partner, or Select All.

    The AutoFilter is one of Excel's most useful tools for dealing with a large dataset in place, no additional sheets necessary.

    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    03-24-2014
    Location
    Utah, USA
    MS-Off Ver
    Microsoft Excel for Mac 2011
    Posts
    3

    Re: Help: I have a master tab and want other tabs to automatically update

    Hi JBeaucaire,

    Thanks for your response. I should have been more clear. On each tab, I have a formula in a separate cell that calculates a score. So on the master tab, that score is calculated based on the values for all of the clients. If I just sort so I can only see Peter's clients, the formula doesn't change and it still has all of the other values included in its calculation.

    That's why I have them on separate tabs. I have a cell with the score on Peter's tab and so on and so forth. But as you said, I may be working too hard. Maybe there's a way that the formula can reflect the values that show when a filter is applied? That would be much easier.

    Here is the formula I have to calculate the score: =ROUNDUP((100*((COUNTIF(A:A,">8")-COUNTIF(A:A,"<7"))/COUNT(A:A))),0)

  4. #4
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Help: I have a master tab and want other tabs to automatically update

    That may still be fixable. Many formulas can be updated to only calculate on the visible rows.

    It would be easiest to test ideas on this regard if you posted a small, desensitized version of this workbook with just enough fake data in there that we can test updating this formula for you.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic

  5. #5
    Registered User
    Join Date
    03-24-2014
    Location
    Utah, USA
    MS-Off Ver
    Microsoft Excel for Mac 2011
    Posts
    3

    Re: Help: I have a master tab and want other tabs to automatically update

    Thanks again for responding. Okay, I've attached a spreadsheet with some obviously fake data (we don't actually count Warren Buffett or LeBron James as clients). The purpose of this spreadsheet is to calculate the Net Promoter Score, and I have a formula in cell I2 that calculates that based on the numbers that are entered into column A.

    It would be ideal if there was any way I could filter the partner column so it just showed Brooke's clients, for example, and the NPS formula in I2 updated to reflect only the data that was visible.
    Attached Files Attached Files

  6. #6
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Help: I have a master tab and want other tabs to automatically update

    We can squeeze this all into one formula, but first I thought I'd let you see the pieces. Try these formulas:

    Get a "count" of the visible numeric cells in column A
    K1: =SUBTOTAL(102,A:A )

    Use SUBTOTAL to get a sum of visible cells >8 and subtract a sum of visible cells less than 7
    L1: =SUMPRODUCT(SUBTOTAL(9,OFFSET(A1, ROW(A1:A15) - ROW(A1), 0)), (A1:A15>8)+0) - SUMPRODUCT(SUBTOTAL(9,OFFSET(A1, ROW(A1:A15) - ROW(A1), 0)), (A1:A15<7)+0)

    Figure the score:
    J1: =CEILING(L1/K1*10,1)



    Now try your various filters.

+ 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. Creating a master sheet that when I update it, automatically updates others
    By SuzyRussell in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 04-11-2013, 09:00 AM
  2. Automatically update the data in Master file
    By Abdul Haneef in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 09-07-2012, 07:58 AM
  3. Replies: 0
    Last Post: 01-14-2011, 12:01 PM
  4. Create additional tabs automatically based on input from master sheet
    By davidshluger in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-30-2010, 12:02 PM
  5. Update worksheets automatically when Master Sheet is updated
    By ApothecaryFairy in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 02-04-2008, 01:43 PM

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