Project Task Management Solution Guide
Project Task Management Solution Guide
PROJECT .03
Coordinate Anything
Project & Task Seamlessly coordinate tasks
Maintain up-to-date task lists for the team and individual
Management members to ensure everyone is on track.
Program Managers
2 A tour of the individual sheets
Project Managers
Project Analysts
3 How to get going
Project Consultants
Business Analysts
4 Helpful resources and cheat sheets
Subject Matter Experts
Operations Managers
Operations Specialists
Project
Charter
Team Task Project Rollup
Project Tracker Dashboard
Plan Individual Weekly
Task Status
Tracker Report
Project Plan
for Agile
B D
E
A
Sign up at smartsheet.com/pm-solutions/project-task-management
Sign up or log in to Smartsheet You can also use this with your existing account by logging in.
Once you’re in Smartsheet, click on the “Getting Started” sheet in the pane
Open the Getting Started Sheet on the right. This sheet will orient you to everything you need to start
working in Smartsheet.
The sample data and structure is only there to help you get going. You
Customize the sheet can type over things, insert or delete rows or columns, rename columns,
change column types etc.
To open another sheet in the solution, simply return to the home tab, select
Start working and sharing the folder, and then the sheet. You can invite others to collaborate by
clicking the sharing tab on the bottom of the sheet.
Knowledge
Project & Task
Management
Management
Solution
Solution
Guide
Guide 12
Other Recommended Steps
Delete sheets you don’t need Deleting a sheet is easy! You can learn how to here.
To help you get the most out of Smartsheet, we’ve included cheat
Use the “cheat sheets” in this guide sheets for formulas and shortcuts at the end of this guide.
Website&Management
Project Task Management
Solution
Solution
GuideGuide 13
Have questions or want to
learn more about Smartsheet?
Smartsheet Help Center - help.smartsheet.com
Everything you need to help you get the most out of Smartsheet.
Knowledge
Project & Task
Management
Management
Solution
Solution
Guide
Guide 14
Smartsheet Cheat Sheet Formatting
Keyboard Shortcuts Inserts a carriage return
+ (or) + or line break in Text
Basics Number cells. In order to
see the carriage returns
in the sheet, apply wrap
/ + Enters edit mode on selected cell formatting to the cell by
clicking the Wrap icon in
the left toolbar.
+ Saves all unsaved information
+ Indents Primary Column only
Date Column Cells Takes you to the first cell of Takes you to the top
the row you are currently on. + left cell of your sheet.
t: Inserts today’s date.
Takes you to the bottom
+: Enters date x days from today. Takes you to the last cell of
the row are are currently on. + right cell of your sheet.
-: Enters date x days before today.
mon / tue / wed / etc... Inserts date of the current
Moves you up in your sheet.
week’s Monday, Tuesday, Wednesday, etc. Moves you down in your sheet.
yes: Inserts yesterday’s date.
Displays or removes a checked box, star or flag in
tom: Inserts tomorrow’s date.
the selected cell. Learn more about checkbox, star
next week: Inserts date seven days from today. and flag columns in our Column Types article.
last week: Inserts date from seven days ago.
Dec 15 / Jan 3 / etc: Inserts date of string entered.
Knowledge
Project & Task
Management
Management
Solution
Solution
Guide
Guide 16
Smartsheet Cheat Sheet
Formulas
Numeric Formulas
SUM(): Adds selected values, or a range of cells. ROUND(): Rounds a given number to the desired # of digits.
Example: =SUM(Cost1: Cost5) Syntax: ROUND(cell1, #_of_digits)
Result: 1125.75 Example: =ROUND(Cost5, 1)
Result: 425.8
AVG(): Averages selected values, or a range of cells.
Example: =AVG(Cost1: Cost5) ABS(): Returns the absolute value of a given number.
Result: 225.15 Example: =ABS(-85)
Result: 85
MAX(): Returns the highest numeric value, or latest date.
Example: =MAX(Cost1: Cost5) COUNT(): Counts non-blank cells in a given range.
Result: 425.75 Example: =COUNT([Task Name]:[Task Name])
Result: 5
MIN(): Returns the lowest numeric value, or earliest date.
Example: =MIN(Cost1: Cost5) LEN(): Returns the number of characters (length) in a given cell.
Result: 100 Example: =LEN([Task Name]5)
Result: 6NOTE: Formatting/currency values aren’t included.
INT(): Returns the integer portion of a given number. Dates have a length of 5.
Example: =INT(Cost5)
Result: 425
ISTEXT(): used within an IF formula to test if a cell contains text (and not checkboxes, dates, numbers, etc).
Example: =IF(ISTEXT([Due Date]1), “Cell is text”, “Cell isn’t text”)
Result: Cell isn’t text
ISNUMBER(): Used within an IF formula to test if a cell contains a number (a value which is not text, date, or checkbox).
Example: =IF(ISNUMBER([Task Name]1), “Cell is a number”, “Cell isn’t a number”)
Result: Cell isn’t a number
ISBOOLEAN(): Used in an IF formula to test if a cell contains a boolean value (check box, priority, star or flag).
Example: =IF(ISBOOLEAN(Done1), “Cell is a boolean”, “Cell isn’t a boolean”)
Result: Cell is a Boolean
Knowledge
Project & Task
Management
Management
Solution
Solution
Guide
Guide 18
Smartsheet Cheat Sheet
Formulas
NOT(): Used within an IF formula. Performs a logical NOT on the supplied boolean expression (or cell reference).
Syntax: NOT(Done1)
Example: =IF(NOT(Done1), “Task A Not Complete”, “Task A Complete”)
Result: Task A Complete
OR(): Used within an IF formula. Performs a logical OR on the supplied boolean expression or cells. Returns true if any are true; otherwise returns false.
Syntax: OR([Due Date]1 > [Due Date]2, [Due Date]1 > [Due Date]3)
Example: =IF(OR([Due Date]1 > [Due Date]2, [Due Date]1 > [Due Date]3), “Due Date 1 isn’t the smallest”, “Due Date 1 is the smallest”)
Result: Due Date 1 is the smallest
NESTED IF(): Performs multiple logical tests. Smartsheet reads the IF statements in the formula from left to right, displaying a value based on which one
evaluates to true.
Syntax: IF(logical_test, value_if_true, IF(second_logical_test, value_if_true, value_if_all_false))
Example: =IF([Task Name]1 = “Task A”, “This is Task A”, IF([Task Name]1 = “Task B”, “This is Task B”, “Neither Task A nor Task B”))
Result: This is Task A