Physical Medicine & Rehabilitation Coding MOC

Core Concepts

Code Sets

Modifiers & Rules

Procedures

Compliance

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.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