Salin dan Bagikan
Cara Menggunakan Notion untuk Produktivitas
Notion adalah all-in-one workspace untuk notes, projects, dan knowledge management. Mari pelajari cara menggunakannya.
Apa itu Notion?
Features
Notes:
- Rich text editing
- Nested pages
- Templates
- Embeds
Databases:
- Tables
- Kanban boards
- Calendars
- Galleries
- Lists
Collaboration:
- Real-time editing
- Comments
- Share pages
- Team workspaces
Use Cases
Personal:
- Notes dan journaling
- Task management
- Reading list
- Habit tracker
- Knowledge base
Work:
- Project management
- Documentation
- Meeting notes
- CRM
- Team wiki
Getting Started
Setup Account
1. Sign up di notion.so
2. Choose:
- Personal (free)
- Team (paid)
3. Setup workspace
4. Explore templates
Interface Overview
Sidebar:
- Workspace switcher
- Search
- Quick find
- Settings
- Pages/Databases
Page:
- Title
- Properties (in database)
- Content blocks
- Comments
Basic Blocks
Text Blocks
/text - Plain text
/h1 - Heading 1
/h2 - Heading 2
/h3 - Heading 3
/bullet - Bullet list
/number - Numbered list
/toggle - Toggle list
/quote - Quote block
/divider - Divider line
/callout - Callout box
Media Blocks
/image - Insert image
/video - Embed video
/audio - Audio file
/file - Attach file
/pdf - PDF embed
/bookmark - Website bookmark
/embed - Embed external content
Advanced Blocks
/code - Code block
/table - Simple table
/database - Inline database
/linked - Linked database view
/toc - Table of contents
/template - Template button
/equation - Math equation
Databases
Database Types
Table:
- Spreadsheet view
- Multiple properties
- Sort and filter
- Great for data
Board:
- Kanban style
- Drag and drop
- Status tracking
- Project management
Calendar:
- Date-based view
- Event planning
- Schedule
- Deadlines
Gallery:
- Card view
- Visual content
- Portfolio
- Media library
List:
- Simple list
- Compact view
- Quick tasks
Properties
Basic:
- Text
- Number
- Select
- Multi-select
- Date
- Checkbox
Advanced:
- Person
- Files & media
- URL
- Email
- Phone
- Formula
- Relation
- Rollup
Create Database
1. Type /database
2. Choose: Inline or Full page
3. Choose view type
4. Add properties:
- Click + to add column
- Name property
- Choose type
5. Add data
6. Create views (filters/sorts)
Templates
Page Templates
Create template:
1. Create page with layout
2. Add blocks dan content
3. Click ... > Save as template
4. Use via /template
Built-in templates:
- Meeting notes
- To-do list
- Journal
- Project
- Wiki
Database Templates
Create:
1. In database, click New
2. Click dropdown arrow
3. "+ New template"
4. Design template
5. Save
Use:
- New entries use template
- Multiple templates per database
- Auto-fill properties
Notion untuk Task Management
Simple To-Do
Page setup:
/toggle Today
/todo Task 1
/todo Task 2
/toggle This Week
/todo Task 3
Task Database
Properties:
- Task (Title)
- Status (Select: To Do, In Progress, Done)
- Priority (Select: High, Medium, Low)
- Due Date (Date)
- Project (Relation)
- Tags (Multi-select)
Views:
1. All Tasks (Table)
2. Kanban by Status (Board)
3. Calendar View (Calendar)
4. Today's Tasks (Filtered list)
Project Management
Database structure:
1. Projects Database
- Name
- Status
- Due date
- Team
- Tasks (Relation)
2. Tasks Database
- Name
- Status
- Due date
- Project (Relation)
- Assignee
Views:
- Project overview
- Team workload
- Timeline
- Sprint board
Personal Knowledge Base
Second Brain Setup
Structure:
📚 Resources/
├── Articles
├── Books
├── Courses
└── Videos
📝 Notes/
├── Daily Notes
├── Meeting Notes
└── Ideas
🎯 Projects/
├── Active
├── On Hold
└── Completed
📋 Areas/
├── Health
├── Finance
├── Career
└── Relationships
PARA Method
P - Projects (time-bound goals)
A - Areas (ongoing responsibilities)
R - Resources (reference material)
A - Archive (completed/inactive)
Database:
- Type (PARA category)
- Status
- Tags
- Related notes
Book/Article Database
Properties:
- Title
- Author
- Type (Book/Article/Video)
- Status (To Read, Reading, Completed)
- Rating
- Tags
- Summary (Text)
- Highlights (Relation to notes)
- Date Finished
Notion untuk Work
Meeting Notes
Template:
# Meeting: [Title]
**Date:** @today
**Attendees:** @mention
## Agenda
- [ ] Item 1
- [ ] Item 2
## Notes
## Action Items
- [ ] Task @person Due: @date
## Follow Up
Documentation
Wiki structure:
🏠 Home
├── 📖 Getting Started
├── 🔧 Processes
├── 📚 Knowledge Base
├── ❓ FAQ
└── 📞 Contacts
Tips:
- Use toggle for sections
- Synced blocks for updates
- Table of contents
- Tags for categorization
Team Workspace
Structure:
📊 Dashboard
├── 📅 Calendar
├── 📋 Projects
├── ✅ Tasks
└── 📝 Meeting Notes
👥 Team
├── 📚 Wiki
├── 🎯 Goals
├── 📈 Reports
└── 🎉 Updates
Advanced Features
Formulas
Common formulas:
// Days until due
dateBetween(prop("Due Date"), now(), "days")
// Status emoji
if(prop("Status") == "Done", "✅",
if(prop("Status") == "In Progress", "🔄", "⭕"))
// Checkbox progress
round(prop("Completed") / prop("Total") * 100) + "%"
// Concatenate
prop("First Name") + " " + prop("Last Name")
Relations & Rollups
Relations:
- Connect databases
- Two-way or one-way
- Ex: Tasks ↔ Projects
Rollups:
- Aggregate related data
- Count, sum, average
- Ex: Count tasks per project
Automations
Notion Automations (Beta):
- Trigger: When property changes
- Action: Set property, notify, etc.
Example:
- When Status → Done
- Set Completed Date to Today
- Notify assignee
Shortcuts
Navigation
Ctrl/Cmd + P - Quick find
Ctrl/Cmd + L - Copy link
Ctrl/Cmd + [ - Go back
Ctrl/Cmd + ] - Go forward
Ctrl/Cmd + U - Parent page
Editing
/command - Slash commands
[[ - Link to page
@ - Mention person/date
:: - Emoji picker
--- - Divider
> - Toggle block
Blocks
Ctrl/Cmd + / - Turn into
Ctrl/Cmd + D - Duplicate
Ctrl/Cmd + Shift + M - Comment
Tab - Indent
Shift + Tab - Un-indent
Drag - Rearrange
Integrations
Connect Apps
Native:
- Slack
- Google Drive
- Figma
- GitHub
- Jira
Via embed:
- YouTube
- Google Maps
- Tweets
- Loom
- Miro
Via Zapier/Make:
- Any app
- Automation
API
// Notion API example
const { Client } = require("@notionhq/client");
const notion = new Client({ auth: process.env.NOTION_TOKEN });
// Query database
const response = await notion.databases.query({
database_id: "database-id",
filter: {
property: "Status",
select: {
equals: "Done",
},
},
});
// Create page
const page = await notion.pages.create({
parent: { database_id: "database-id" },
properties: {
Name: { title: [{ text: { content: "New Item" } }] },
Status: { select: { name: "To Do" } },
},
});
Tips Produktivitas
Best Practices
Organization:
- Consistent naming
- Use icons dan covers
- Keep sidebar clean
- Use workspaces
Content:
- Use templates
- Link related pages
- Use synced blocks
- Archive tidak delete
Weekly Review
Template:
## Weekly Review - [Date]
### Accomplishments
-
### Lessons Learned
-
### Next Week Priorities
1.
2.
3.
### Notes
Daily Dashboard
Components:
- Today's date
- Linked database: Today's tasks
- Calendar: This week
- Quick capture
- Habit tracker
- Goals progress
Alternatives
Similar tools:
- Obsidian (local files, markdown)
- Roam Research (networked thought)
- Coda (doc + app)
- Clickup (project management)
Choose Notion if:
- Need databases + docs
- Team collaboration
- Visual organization
- All-in-one solution
Kesimpulan
Notion adalah tool versatile untuk organizing life dan work. Start simple, lalu gradually build system yang sesuai kebutuhan.
Artikel Terkait
Link Postingan : https://www.tirinfo.com/cara-menggunakan-notion-produktivitas/
Editor : Hendra WIjaya
Publisher :
Tirinfo
Read : 6 minutes.
Update : 7 January 2026