Gets the completion status for specific forms across all participants, useful for identifying which participants need follow-up.
Usage
get_form_completion_status(
project,
forms,
event = NULL,
status = c("complete", "incomplete", "not_started", "unverified")
)Examples
if (FALSE) { # \dontrun{
project <- redcap_project()
# Get all completion statuses
completion <- get_form_completion_status(
project,
forms = c("demographics", "baseline_survey")
)
# Only incomplete forms (for follow-up)
incomplete <- get_form_completion_status(
project,
forms = c("follow_up_1", "follow_up_2"),
status = c("incomplete", "not_started")
)
} # }
