Using a List of employees to open report

imodett 41 Reputation points
2023-04-02T03:15:22.6066667+00:00

I would like to open a report based on the selection from a list of employees. Can this be done? IF so, please assist.

Microsoft 365
Microsoft 365
Formerly Office 365, is a line of subscription services offered by Microsoft which adds to and includes the Microsoft Office product line.
3,786 questions
Access
Access
A family of Microsoft relational database management systems designed for ease of use.
304 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2023-04-03T12:17:17.88+00:00

    Hello! I'd be happy to help you with your question.

    Hello! It sounds like you want to open a report based on the selection of an employee from a list. This is definitely possible to do in Microsoft Excel using a drop-down list and some simple formulas.

    Here are the steps to create a drop-down list in Excel and link it to a report:

    1. Create a list of employees in a separate worksheet or table.
    2. Select the cell where you want the drop-down list to appear in the report worksheet.
    3. Go to the "Data" tab and click on "Data Validation."
    4. In the "Settings" tab, select "List" as the validation criteria and enter the range of cells that contain the list of employees.
    5. Click "OK" to create the drop-down list.
    6. Create your report using formulas and data from the employee data table.
    7. Use the "INDEX" and "MATCH" functions to pull data from the employee data table based on the selected employee in the drop-down list.

    For example, if your employee data table is in cells A1:B10 and the drop-down list is in cell A1 of the report worksheet, you could use the following formula to pull the employee's name and information from the data table:

    =INDEX($B$1:$B$10,MATCH(A1,$A$1:$A$10,0))

    This formula would return the value in column B (the employee information) for the row where the selected employee matches the value in column A (the employee names).

    I hope this helps! Let me know if you have any other questions.