Physical Medicine & Rehabilitation Coding MOC
Core Concepts
Code Sets
- CPT 97000 Series; Physical Medicine
- E&M Coding for Physiatrists
- ICD-10 for Musculoskeletal
- ICD-10 for Neurological
Modifiers & Rules
Procedures
Compliance
- Documentation Requirements for PM&R
- Audit Triggers in PM&R
- Telehealth in PM&R
- CMS Medicare Guidelines
- CPT Assistant References
Resources
๐Critical Compliance
TABLE file.mtime as "Last Updated"
FROM ""
WHERE contains(file.tags, "#compliance")
SORT file.mtime DESC๐ PM&R Specific Dashboard Query
TABLE file.tags as "Tags", file.mtime as "Last Updated"
FROM #coding
WHERE contains(file.path, "PM&R")
SORT file.mtime DESC
LIMIT 10๐ Compliance Notes
TABLE WITHOUT ID
file.link as "Note",
file.mtime as "Modified"
FROM #compliance
SORT file.mtime DESCโ ๏ธ Pending Queries
TABLE WITHOUT ID
file.link as "Query",
file.mtime as "Created"
FROM #coding/query
WHERE !contains(file.tags, "#resolved")
SORT file.mtime DESC๐ง Dataview Syntax Quick Reference
| โ Wrong | โ Correct |
|---|---|
file.path contains "PM&R" | contains(file.path, "PM&R") |
file.tags = "#coding" | contains(file.tags, "#coding") |
FROM #tag WHERE... | FROM #tag (no WHERE needed for simple tag filter) |
SORT BY file.mtime | SORT file.mtime DESC |
๐ Additional Troubleshooting
| Issue | Fix |
|---|---|
| Query shows as code block | Add a blank line before the ```dataview block |
| No results returned | Verify tags exist in notes (check frontmatter or body) |
| Plugin not recognized | Enable Dataview in Settings โ Community Plugins |
| Field not found | Use file.field for metadata, field for frontmatter values |
Test Query
To verify Dataview is working, try this simple test query first:
LIST FROM "" LIMIT 5If this works, your plugin is functioning correctly.
Crystal's MCW Coder Hub