Physical Medicine & Rehabilitation Coding MOC

Core Concepts

Code Sets

Modifiers & Rules

Procedures

Compliance

Resources

  • External Links

📋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.mtimeSORT file.mtime DESC

🛠 Additional Troubleshooting

IssueFix
Query shows as code blockAdd a blank line before the ```dataview block
No results returnedVerify tags exist in notes (check frontmatter or body)
Plugin not recognizedEnable Dataview in Settings → Community Plugins
Field not foundUse file.field for metadata, field for frontmatter values

Test Query

To verify Dataview is working, try this simple test query first:

LIST
FROM ""
LIMIT 5

If this works, your plugin is functioning correctly.

Resources