Step-by-Step: Creating Microsoft Project Subtasks and Summary Tasks

manager considering project strategy by the task board

Share:

Reading Time: 7 minutes

Understanding Summary Tasks

A summary task, also referred to as a parent task, in Microsoft Project is a high-level task that groups together a set of subtasks. It provides a consolidated view of the subtasks’ combined information, such as their total duration, start and finish dates, and overall progress. Here are some key points about summary tasks:

  • Structure: When you indent a task below another task, the indented task becomes a subtask, and the task above it becomes a summary task.

  • Display: Summary tasks are typically displayed in bold in the project outline.

  • Functionality: They help in organizing and managing complex projects by breaking them down into more manageable parts.

  • Visibility: You can show or hide subtasks under a summary task by using the expand/collapse arrows next to the summary task name.

Creating and Managing Subtasks

balls, businessman, colorful

Creating subtasks in Microsoft Project is a great way to break down complex tasks into more manageable pieces. It is important to create a project plan that includes subtasks and summary tasks to enhance clarity and improve the management of complex projects. Here’s how you can do it:

  1. Open Your Project: Start by opening your project in Microsoft Project.

  2. Switch to Gantt Chart View: This is the default view, but if you’re not in it, go to the View tab and select Gantt Chart.

Accidental Project Management | Step-by-Step: Creating Microsoft Project Subtasks and Summary Tasks

3. Add Tasks: Enter all the tasks you need for your project. These can be high-level tasks or detailed ones. 4. Indent Tasks to Create Subtasks:

  1. Select the task you want to turn into a subtask.

  2. Go to the Task tab and click Indent Task (or press Alt+Shift+Right Arrow). This will make the selected task a subtask of the task above it, which becomes a summary task

Accidental Project Management | Step-by-Step: Creating Microsoft Project Subtasks and Summary Tasks

Working with Subtasks and Summary Tasks

checklist, analysis, check off

Using subtasks and summary tasks helps you keep your project organized and makes it easier to track progress. A task list can help in managing subtasks and summary tasks by providing a clear structure and overview.

  1. Organize Your Subtasks:

  • You can create multiple levels of subtasks by indenting tasks further.

Accidental Project Management | Step-by-Step: Creating Microsoft Project Subtasks and Summary Tasks
  • To outdent a task (move it back to a higher level), select the task and click Outdent Task (or press Alt+Shift+Left Arrow).

Accidental Project Management | Step-by-Step: Creating Microsoft Project Subtasks and Summary Tasks

2. Show or Hide Subtasks:

  • Use the collapse and expand arrows next to the summary tasks to show or hide the subtasks.

Accidental Project Management | Step-by-Step: Creating Microsoft Project Subtasks and Summary Tasks
  • Alternatively, go to the View tab, select Outline, and choose the level of subtasks you want to display.

Accidental Project Management | Step-by-Step: Creating Microsoft Project Subtasks and Summary Tasks

Adjust Task Details: You can modify the duration, start and finish dates, and other details for each subtask as needed.

How to use the Task Information Window to Set Summary Task Values

A project summary task allows users to visualize an entire project on a single row within a task list, summarizing all subtasks under one effective header. This feature enhances clarity and organization in Microsoft Project.

  1. Open Your Project: Start by opening your project in Microsoft Project.

  2. Switch to Gantt Chart View: Ensure you are in the Gantt Chart view. If not, go to the View tab and select Gantt Chart.

  3. Select the Summary Task: Click on the summary task you want to modify. Summary tasks are typically displayed in bold.

  4. Open the Task Information Window:

  • Right-click on the summary task and select Information from the context menu.

  • Alternatively, you can select the task and then click on the Task Information button in the Task tab.

microsoft project summary information

5. Modify Task Information:

  • General Tab: Here, you can change the task name, duration, start and finish dates, and other basic details.

  • Advanced Tab: You can set constraints, deadlines, and other advanced settings.

  • Notes Tab: Add any relevant notes or comments about the summary task.

  • Predecessors and Successors Tabs: Manage task dependencies by adding or modifying predecessors and successors.

  • Save Changes: After making the necessary changes, click OK to save and close the Task Information window.

summary task information microsoft project

Avoid Assigning Resources to Summary Tasks

It’s generally not recommended to assign resources to summary tasks in Microsoft Project. Here are a few reasons why:

  • Resource Overallocations: Assigning resources to summary tasks can lead to overallocation issues, as the resources might be counted twice—once for the summary task and once for the subtasks.

  • Accuracy: Summary tasks are meant to provide a high-level overview of the project. Assigning resources to them can distort the actual work and cost calculations, making it harder to track the project’s progress accurately1.

  • Best Practices: It’s better to assign resources directly to the individual subtasks. This approach ensures that the work is distributed correctly and that you have a clear view of who is responsible for each specific task.

If you need to manage resources effectively, consider using the Resource Sheet and Resource Usage views to get a detailed look at resource allocation and availability.

Advanced Techniques for Subtask Management

schedule, routine, management

Schedule Group Feature

Using the Schedule Group feature in Microsoft Project can help you manage and organize subtasks effectively.

  1. Open Your Project: Start by opening your project in Microsoft Project.

  2. Switch to a Sheet View: Go to the View tab and select a sheet view such as Gantt Chart, Task Sheet, or Task Usage.

  3. Group Tasks:

    • In the View tab, locate the Data group.

    • Click on the Group by box and select the grouping criteria you want to use. For example, you can group tasks by Summary Task, Resource, Duration, or any custom field you have set up.

  4. Customize Grouping:

    • You can further customize the grouping by clicking on More Groups in the Group by dropdown.

    • In the More Groups dialog box, you can create a new group or modify an existing one by specifying the fields and criteria for grouping1.

  5. Apply the Grouping:

    • Once you have set up your grouping criteria, click Apply to organize your tasks according to the selected criteria.

    • This will help you see all related subtasks under their respective summary tasks or any other grouping you have chosen.

  6. Manage Subtasks:

    • With the tasks grouped, you can easily manage subtasks by expanding or collapsing the groups.

    • This makes it easier to focus on specific sections of your project and manage the details of each subtask effectively.

Accidental Project Management | Step-by-Step: Creating Microsoft Project Subtasks and Summary Tasks

Using the Gantt Chart to Visualize Summary Tasks and Subtasks

Using the Gantt Chart in Microsoft Project to visualize subtasks and summary tasks is a powerful way to manage and track your project’s progress.

Use VBA to Automatically Create Summary and Subtasks

You can use VBA (Visual Basic for Applications) to automate the creation of summary and subtasks in Microsoft Project. Here’s a step-by-step guide to help you get started:

  1. Open Your Project: Start by opening your project in Microsoft Project.

  2. Open the VBA editor: Pressing Alt + F11 to open the VBA editor.

  3. Insert a New Module: In the VBA editor, go to Insert > Module to create a new module.

  4. Write the VBA Code

Here’s an example of VBA code that creates a summary task with subtasks:

  1. Run the Macro

    • Close the VBA editor.

    • Press Alt + F8 to open the Macro dialog box.

    • Select CreateSummaryAndSubtasks and click Run.t

Explanation of the Code

  • Set the Project: The proj variable is set to the active project.

  • Add a Summary Task: A new task named “Summary Task” is added and set as a summary task by assigning it an outline level of 1.

  • Add Subtasks: Two subtasks are added with an outline level of 2, making them subtasks of the summary task.

  • Link Subtasks to Summary Task: The OutlineParent property is used to link the subtasks to the summary task.

This code creates a summary task with two subtasks and sets their start and finish dates. You can modify the task names, dates, and other properties as needed

Use Copilot in Planner to generate subtasks using AI

Using Copilot in Microsoft Planner to generate subtasks with AI can streamline your project management process. Here’s how you can do it:

  1. Open Your Plan: Start by opening the plan in Microsoft Planner where you want to add subtasks.

  2. Locate the Task: Find the task for which you want to generate subtasks.

  3. Activate Copilot:

    • Click on the Copilot icon at the top right of the plan to open the Copilot chat pane.

  4. Enter Your Prompt:

  5. Review and Adjust:

    • Copilot will generate a list of suggested subtasks based on your prompt.

    • Review the generated subtasks and make any necessary adjustments. If you’re not satisfied with the initial suggestions, you can click the Regenerate button to get a new set of subtasks.

  6. Finalize Subtasks:

    • Once you’re happy with the generated subtasks, you can finalize them and continue working on your plan.

Using Copilot in Planner helps you break down complex tasks into manageable pieces, making it easier to focus on specific actions and track progress.

Conclusion

Mastering subtasks in Microsoft Project simplifies task management and enhances project success by allowing detailed monitoring. Dividing larger tasks into manageable subtasks enables efficient resource allocation and precise progress tracking, fostering clearer communication among team members about their responsibilities.

Accidental Project Management | Understanding Qualitative Risk Assessment [Key Techniques and Benefits]

This site offers a wide range of content related to project management, specifically tailored for those who find themselves in project management roles without formal training.

Follow Us

Subscribe Newsletter

Subscribe to get the latest news from us

Contact Us

Copyright © 2024 accidentalprojectmgmt.com. All Rights Reserved

Discover more from Accidental Project Management

Subscribe now to keep reading and get access to the full archive.

Continue reading