Knowledge Management Solution Guide PDF
Knowledge Management Solution Guide PDF
PROJECT .02
Knowledge
Management
Find it online: smartsheet.com/pm-solutions/knowledge-management
Coordinate Anything
About Knowledge Centralize program knowledge
Create wiki-like sheets to leverage program stakeholders’
Management collective knowledge.
Deliverables Project
Program Archive Closeout
Templates & Form
Resources Methodologies
Onboarding Program
Checklist Glossary
C
Save the onboarding sheet as D
E a template for easy reuse.
A D
C List the project owners
C alongside the deliverables so
you can track accountability.
E
A D
Use a web form to streamline
D the submission of completed
deliverables by project teams.
A
B B
B
E D
Verify that project managers
D have completed all of the
A necessary tasks with a simple
checklist.
A
Sign up at smartsheet.com/pm-solutions/knowledge-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.
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
Knowledge Management
Solution
Solution
Guide
Guide 14
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.
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.
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
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