Home>Templates>Automated Daily Task Manager with auto Check boxes
Daily Task Manager
Templates

Automated Daily Task Manager with auto Check boxes

Automated Daily Task Manager Template is a very useful template to manage your daily tasks. We have used VBA automation to create an auto checkbox when the new task will be entered. We have used conditional formatting to show the completed task and overdue task. The status check box will be deleted automatically when you will delete a task.

See our other templates:

Automated Daily Task Manager with auto Check boxes

Automated Daily Task Manager with auto Check boxes
Automated Daily Task Manager with auto Check boxes

or
 

To create and delete a check box automatically, we have used below given VBA Code on the worksheet change event-

Private Sub Worksheet_Change(ByVal Target As Range)

Dim check_box
Dim rng As Range
Dim chk_rng As Range


Dim sp As Shape

For Each rng In Target
Set chk_rng = Cells(rng.Row, 4)
If rng.Column = 2 And rng.Row > 2 Then
If rng.Value <> "" Then
If chk_rng.Value = "" Then
Set check_box = Sheet2.CheckBoxes.Add(chk_rng.Left + 10, chk_rng.Top - 2, 40, 20)
check_box.LinkedCell = chk_rng.Address
check_box.Characters.Text = ""
chk_rng.Value = "False"
chk_rng.NumberFormat = ";;;"
End If
End If

If rng.Value = "" Then
For Each sp In ActiveSheet.Shapes
If sp.TopLeftCell.Offset(1, 0).Address = chk_rng.Address Then
sp.Delete
chk_rng.Value = ""
End If
Next
End If

End If
Next

End Sub

Visit our YouTube channel to learn step-by-step video tutorials

Youtube.com/@PKAnExcelExpert

Watch the step by step video tutorial:

or
 

PK
Meet PK, the founder of PK-AnExcelExpert.com! With over 15 years of experience in Data Visualization, Excel Automation, and dashboard creation. PK is a Microsoft Certified Professional who has a passion for all things in Excel. PK loves to explore new and innovative ways to use Excel and is always eager to share his knowledge with others. With an eye for detail and a commitment to excellence, PK has become a go-to expert in the world of Excel. Whether you're looking to create stunning visualizations or streamline your workflow with automation, PK has the skills and expertise to help you succeed. Join the many satisfied clients who have benefited from PK's services and see how he can take your Excel skills to the next level!
https://www.pk-anexcelexpert.com