How to Create a Daily Task Sheet in Excel – 3 Methods


 

Method 1 – Create a Daily Task Sheet with a Drop-Down List

Steps:

  • Prepare your daily task sheet table with column headings. To automate the priority and status of individual tasks:

Daily Task Sheet Columns

  • Click the cell in which you want to place the priority of the task. Go to the Data tab >> Data Tools >> Data Validation >> Data Validation…

Create a Daily Task Sheet with Drop-Down List

  • In the Data Validation window, select Settings.
  • In Allow, choose List.
  • Enter the priority options you want to select automatically in the Source text box. Separate every option by a comma(,).
  • Click OK.

Create a Daily Task Sheet with Drop-Down List

  •  Click the drop-down arrow in E5 to select a priority option.

Fill Up Priority Cell Using Drop-Down List

  • Drag down the Fill Handle to see the result in the rest of the cells.

Copy Drop-Down List

  • Set another data validation in the Status column. Enter the status options in the Source text box.

Automate Your Status Column Options

  • To format the priority options, select the priority cells >> go to the Home tab >> click Conditional Formatting >> click New Rule…

Apply Conditional Formatting on the Priority Column Cells

  • In the New Formatting Rule window, choose Format only cells that contain in Rule Type.
  • In Format only cells with:, select Specific text.
  • Set the format to high priority: enter High in the right side text box.
  • Click Format.

Set the Formatting Rule for Priority Column

  • In the Format window, in Fill, choose a color.
  • Click OK.

Format Priority Column Cells with Color

  • In the New Formatting Rule window, click OK.

Preview of the Formatting of the Priority Column

  • Set formats for medium and low priority tasks.
  • You can also set the format of the Status column: select the status cells >> go to the Home tab >> click Conditional Formatting >> click New Rule…
  • In the New Formatting Rule window, choose Use a formula to determine which cells to format in Rule Type.
  • Enter equal sign (=) in the formula text box to enter a formula. The format is set to a completed status: enter “Complete”.
  • Click Format.

Set Conditional Formatting for the Status Column Cells

  • In the Format Cells window, go to the Font tab.
  • Check Strikethrough. You can also change the format of font color and change the fill color in Fill.
  • Click Ok.

Set the Format Style for the Status Column Cells

This is the output.

Create a Daily Task Sheet in Excel

Read More: How to Create Real Time Tracker in Excel


Method 2. Create a Daily Task Sheet with a Checkbox

Steps:

  • Follow the first eleven steps in Method 1.
  • Add checkboxes: select the Completed column >> Go to the Developer tab >> click Insert >> click the Checkbox icon.

Insert Checkbox for Task Sheet

  • Drag and move the checkbox inside the cell.

Place Checkbox Properly in the Cell

  • Repeat the process for all other status cells. Checkboxes will be displayed in all cells of the Completed column.

All Required Cells containing Checkbox

  • To remove the text Check, right-click the checkbox and choose Edit Text.

Remove the Text from the Checkbox

  • Delete all text characters. Repeat the process for every checkbox. Only the checkbox icon will be displayed.

All Cells Carry Only the Checkbox without the Text

  • To add formatting to the checkboxes, extract their values.
  • Right-click the checkbox and choose Format Control…

Define Checkbox Values

  • In the Format Control window, choose the Control tab.
  • Make sure the value is selected as Unchecked.
  • Link the cell to place the extracted value, here G5.
  • Click OK.

Checkbox Value Linked Successfully

  • The checkbox will display FALSE when unchecked and TRUE when checked. Drag the fill handle to copy the format to the cells below.

Copy the Checkbox Value Link for All the Cells Below

  • Every cell in the Completed column has a value beside the checkboxes. All values are FALSE as checkboxes are unchecked.

  • Format the completed tasks.
  • Select D5:G10 >> go to the Home tab >> click Conditional Formatting >> click New Rule…

Set the Rule for Formatting the Completed Cells

  • In the New Formatting Rule window, choose Use a formula to determine which cells to format in Rule Type.
  • Enter equal sign (=) in the formula text box to enter a formula. The format is set to completed status, which is determined by the checked checkbox: enter TRUE.
  • Click Format.
  • In the Format Cells window, go to the Font tab.
  • Check Strikethrough option. You can also change the format of font color and fill color in Fill.
  • Click Ok.

Preview of the Format of the Completed Cells

The daily task sheet displays checkboxes. If you click the checkbox, TRUE will be returned.

Create a Daily Task Sheet in Excel Using Checkbox

Read More: How to Create a Progress Tracker in Excel


Method 3 –  Prepare a Double-Click-Enabled Daily Task Sheet

Steps:

Follow the first 11 steps in Method 1 to automate the task priority. Use a VBA for the completion status and enable the double-click to change it:

  • Go to the Developer tab >> Visual Basic.

Enable VBA to Write Code

  • In the Microsoft Visual Basic for Applications window, click Sheet 3 and enter the following code:

Write the Code in VBA Window

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Cancel = False
    If Target.Row >= 5 And Target.Row <= 10 And Target.Column = 6 Then
    Cancel = True
        If Cells(Target.Row, Target.Column) <> Range("G5").Value Then
            Cells(Target.Row, Target.Column).Value = Range("G5").Value
        Else: Cells(Target.Row, Target.Column).Value = "No"
        End If
    End If
End Sub
  • Save the workbook as an Excel-Macro Enabled Workbook (.xlsm).
  • Close it and reopen it again. The macro is enabled.

Prepare a Double-Click-Enabled Daily Task Sheet

  • Enter YES in G5.
  • By double-clicking a cell, between row 5 and row 10 in column 6 (declared in the code), YES will be displayed.
  • Another double-click will toggle the value to NO.

Prepare a Double-Click-Enabled Daily Task Sheet

  • Fill all the cells by toggling double-click.

Enable All cells with Desired Value

  • Apply conditional formatting: select the cells >> go to the Home tab >> click Conditional Formatting >> click New Rule….

Prepare a Double-Click-Enabled Daily Task Sheet

  • Select the Rule Type as Use a formula to determine which cells to format >> in the formula text box, write =F5=”YES” >> click Format >> Check Strikethrough in Font and in Fill, choose a color.
  • Click OK.

Prepare a Double-Click-Enabled Daily Task Sheet

This is the output.

Create a Daily Task Sheet in Excel with Double-Click

Read More: How to Create a Task Tracker in Excel


Points to Remember

  • Do not use absolute cell reference in conditional formatting.

Download Practice Workbook

Download the template and practice.


 

Related Articles


<< Go Back to Create a Tracker in Excel | Tracker in Excel | Excel Templates

Get FREE Advanced Excel Exercises with Solutions!
Tanjim Reza
Tanjim Reza

Md. Tanjim Reza Tanim, a BUET graduate in Naval Architecture & Marine Engineering, contributed over one and a half years to the ExcelDemy project. As an Excel & VBA Content Developer, he authored 100+ articles and, as Team Leader, reviewed 150+ articles. Tanim, leading research, ensures top-notch content on MS Excel features, formulas, solutions, tips, and tricks. His expertise spans Microsoft Office Suites, Automating Finance Templates, VBA, Python, and Developing Excel Applications, showcasing a multifaceted commitment to the... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo