How to Create a Project Time Estimation Sheet in Excel – 4 Steps

Step 1 – Create Basic Outlines

  • In the Data sheet, enter the tasks, employee names, their designation, and costs per hour to complete each task.

Creation of Basic Outlines to Form a Project Time Estimation Sheet in Excel

  • Create another sheet: Template.
  • Insert 7 columns; SL No, Tasks, Designation, Name, Planned Weeks; Estimated Weeks, Cost per hour, Planned Cost, and Estimated Cost.

  • Add 10 more columns for 10 weeks to see the percentage of  accomplished tasks.

Creation of Basic Outlines to Form a Project Time Estimation Sheet in Excel

  • Add serial numbers from 1 to 19 in SL No.

serial numbers

Read More: How to Calculate Residential Construction Cost Estimator in Excel


Step 2 – Create a Drop-down List and Enter Values

  • Select the Tasks column and go to the Data tab >> Data Validation.

Adding Drop-down List to form project time estimation sheet in Excel

In the Data Validation dialog box:

  • Select the List in Allow.
  • Choose the list of Tasks in the Data sheet and click OK.
  • The following formula is displayed in the Source box.
=Data!$B$5:$B$16

data validation

You will see the symbol of the drop-down list in the Tasks column.

  • Click the drop-down sign in C5 and choose a task from the list. Here, Task 3.

  • Complete the other cells in the Tasks column by choosing different tasks from the list.

Adding Drop-down List to form project time estimation sheet in Excel

  • Select the cells in the Designation column and go to the Data tab >> Data Validation.

In the Data Validation dialog box:

  • Select List in Allow.
  • Select the column Designations in the Data sheet.
  • Click OK.
  • The following formula will be displayed in the Source box.
=Data!$C$5:$C$16

data validation

The drop-down list symbol is displayed in the Designation column.

  • Click the drop-down sign inD5 and choose a Designation. Here, Manager.

Complete the other cells in the Designation column by choosing different designations from the list.

Adding Drop-down List to form project time estimation sheet in Excel

  • Enter the percentages of tasks completed in different weeks:

Giving input values to weeks to form project time estimation sheet in Excel

Read More: How to Make an Effort Estimation Sheet in Excel 


Step 3 – Applying Formulas

Adding Formulas to form project time estimation sheet in Excel

  • Use the following formula in E5 to get the names corresponding to different designations.
=INDEX(Data!$D$5:$D$16, MATCH(D5, Data!$C$5:$C$16,0))

Formula Breakdown

  • MATCH(D5, Data!$C$5:$C$16,0) → becomes
    • MATCH(“Manager”, Data!$C$5:$C$16,0) → The MATCH function returns the row index number corresponding to $C$5:$C$16: Manager
      • Output → 3
  • INDEX(Data!$D$5:$D$16, MATCH(D5, Data!$C$5:$C$16,0)) → becomes
    • INDEX(Data!$D$5:$D$16, 3) → The INDEX function returns the name of the employee in Row 3 in $D$5:$D$16.
      • Output → Ursula

You will see the employees’ names and their designations.

Adding Formulas to form project time estimation sheet in Excel

To extract the costs of different tasks from the Data sheet.

  • Enter the following formula in H5 and press ENTER.
=INDEX(Data!$E$5:$E$16, MATCH(C5, Data!$B$5:$B$16,0))

Formula Breakdown

  • MATCH(C5, Data!$B$5:$B$16,0)becomes
    • MATCH(“Task 3”, Data!$B$5:$B$16,0) → The MATCH function returns the row index number corresponding to $C$5:$C$16: Manager
      • Output → 3
  • INDEX(Data!$E$5:$E$16, MATCH(C5, Data!$B$5:$B$16,0)) → becomes
    • INDEX(Data!$E$5:$E$16, 3) → The INDEX function returns the cost of the corresponding task in Row 3 in $E$5:$E$16.
      • Output → $67.00

  • Drag down the Fill Handle.

The costs of different tasks are displayed.

Adding Formulas to form project time estimation sheet in Excel

  • Enter the planned number of weeks for different tasks in the Planned Weeks column.

write down week numbers

To calculate the time for completing each task based on the percentages of different tasks in different weeks:

  • Use the following formula in G5 and press ENTER.
=IF(SUMIF($L5:$U5,">0")>0, SUMIF($L5:$U5,">0"),"")

Formula Breakdown

  • SUMIF($L5:$U5,”>0″) → The SUMIF function sums the percentages in $L5:$U5 if values are greater than 0.
    • Output → 1.55
  • IF(SUMIF($L5:$U5,”>0″)>0, SUMIF($L5:$U5,”>0″),””) → becomes
    • IF(1.55>0, 1.55,””) → The IF function returns 55: the logical condition is TRUE. Otherwise, blank.
      • Output → 1.55
  • Drag down the Fill Handle.

formula

The estimated weeks for different tasks are displayed.

Adding Formulas to form project time estimation sheet in Excel

To calculate the costs of the planned duration:

  • Use the following formula in I5 and press ENTER.
=IF(H5<>"",$F5*H5*5*8,"")

Formula Breakdown

  • $F5*H5*5*8 → becomes
    • 2*67*5*8 → multiplies the total weeks by cost per hour; to convert the total weeks into hours, weeks are multiplied by 5 (weekdays) and 8 (daily working hours).
      • Output → 5360
  • IF(H5<>””,$F5*H5*5*8,””) → becomes
    • IF(67<>””,5360,””) → returns 5360: the logical condition is TRUE. Otherwise, blank.
      • Output → 5360
  • Drag down the Fill Handle.

planned cost

The costs of each task according to the planned data are displayed:

Adding Formulas to form project time estimation sheet in Excel

  • Enter the following formula in J5 and press ENTER.
=IF(H5<>"",$G5*H5*5*8,"")

Formula Breakdown

  • $G5*H5*5*8becomes
    • 55*67*5*8 → multiplies the total weeks by cost per hour; to convert the total weeks into hours, they are multiplied by 5 (weekdays) and 8 (daily working hours).
      • Output → 4154
  • IF(H5<>””,$G5*H5*5*8,””) → becomes
    • IF(67<>””,4154,””) → returns 4154: the logical condition is TRUE. Otherwise, blank.
      • Output → 4154
  • Drag down the Fill Handle.

estimated cost

The costs of each task are displayed.

Adding Formulas to form project time estimation sheet in Excel

Read More: How to Make Cost Estimation Sheet in Excel


Step 4 – Calculating the Total Values

Calculate the total weeks and total costs of all projects:

calculating total values to form project time estimation sheet in Excel

  • Enter the following formula in G24.
=SUM(G5:G23)

The SUM function returns the total number of weeks.

SUM function

  • Press ENTER.

calculating total values to form project time estimation sheet in Excel

Calculate the number of weeks required to complete all tasks:

  • Enter the following formula in J24.
=SUM(J5:J23)

The SUM function returns the total costs of all tasks.

total cost


Download Practice Workbook


Related Articles


<< Go Back to Excel Project Management Templates | Excel Templates

Get FREE Advanced Excel Exercises with Solutions!
Tanjima Hossain
Tanjima Hossain

TANJIMA HOSSAIN is a marine engineer who enjoys working with Excel and VBA programming. For her, programming is a handy, time-saving tool for managing data, files, and online tasks. She's skilled in Rhino3D, Maxsurf C++, MS Office, AutoCAD, and Excel & VBA, going beyond the basics. She holds a B.Sc. in Naval Architecture & Marine Engineering from BUET and is now a content developer. In this role, she creates tech-focused content centred around Excel and VBA. Apart from... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo