Forum Discussion

Ka_ChunL's avatar
Ka_ChunL
Copper Contributor
Aug 20, 2025

Multiple tables automatically updated

Hi Expertise, 

May I ask your help in this case?

I have 3 similar tables under Section 1, Section 2 & Section 3 as below. When i select desire value from a cell with list, select service either A or B, all tables can be automatically updated. 

Could you please advise how to achieve

Section 1 
DepartmentExpenses
Q10
R11
Y18

 

    

Department

SectionServiceExpenses
Q1A10
R1A11
S2A12
T2B13
U3B14
V1B15
W2A16
X3A17
Y1A18

Lawrence

1 Reply

  • Take this:

     

    1. Create a Dropdown for Service Selection
    • Go to a cell (e.g., D1) and use Data Validation:
      • Data → Data Validation → Allow: List → Source: A,B
    1. Use FILTER or INDEX/MATCH to Populate Tables

    Assuming your full data is in a table named DataTable with columns: Department, Section, Service, Expenses.

    You can use the FILTER function (Excel 365 or Excel 2021):

    =FILTER(DataTable, DataTable[Service]=D1)

    This will return all rows where Service matches the selected value.

    To break it down by Section (1, 2, 3), use:

    =FILTER(DataTable, (DataTable[Service]=D1)*(DataTable[Section]=1))

    Repeat for Section 2 and Section 3 by changing the Section value.

    1. Display in Separate Tables

    Place each formula in the starting cell of your Section 1, 2, and 3 tables. Excel will spill the results automatically.

Resources