Completed Case Reports

Discussions about tools to complement CSPro data processing
Forum rules
New release: CSPro 8.0
Post Reply
sergiofurtado
Posts: 29
Joined: October 5th, 2019, 1:43 pm

Completed Case Reports

Post by sergiofurtado »

Hello everyone

Taking as an example an application that has multiple records and most of the time is not collected at the same time, does CSPro have any tools or functions that indicate whether a case has been fully populated according to the logic set by the application developer?

If not, what strategy to adopt to obtain this information?

Thanks
Gregory Martin
Posts: 1777
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: Completed Case Reports

Post by Gregory Martin »

What some people do is simply an item to their dictionary, something like COMPLETE, and then prefill it using logic.
PROC PROGRAM_LEVEL

preproc

   
COMPLETE = 0;

postproc

   
COMPLETE = 1;
What would happen is that, whenever you open the case, it would get set to 0, and it would only be marked as complete when they successfully navigated all the logic and ended the case.
sergiofurtado
Posts: 29
Joined: October 5th, 2019, 1:43 pm

Re: Completed Case Reports

Post by sergiofurtado »

Hi Gregory,

Thanks for the guidance.
Post Reply