Search found 3 matches

by PURPLESTUFF
December 15th, 2023, 10:15 am
Forum: Synchronization
Topic: AWS CSWEB setup
Replies: 2
Views: 10603

AWS CSWEB setup

Is there any tutorial teaching how to setup AWS instance with CSWeb or AWS Lightsail with CSWEB? I would really like to have something on that. I am currently working on a project and would like to set it up instead of using dropbox.
by PURPLESTUFF
November 30th, 2023, 12:52 pm
Forum: Editing
Topic: BLANK OCCURRENCES IN ROSTER
Replies: 5
Views: 18738

Re: BLANK OCCURRENCES IN ROSTER

He can always use the delete occurrence

// remove "blank" person records
do numeric i = totocc(PERSON_REC) while i >= 1 by -1

if RELATIONSHIP(i) = notappl and SEX(i) = notappl and AGE(i) = notappl then
delete(PERSON_REC(i));
endif;

enddo;
by PURPLESTUFF
November 30th, 2023, 12:50 pm
Forum: Entry
Topic: SYSTEM CONTROL ERASING SKIPPED FIELDS
Replies: 1
Views: 9694

SYSTEM CONTROL ERASING SKIPPED FIELDS

I am currently preparing for a project. I have roster. I want the some information from the previous occurrence to be pulled in the current occurrence field of a certain variable. example variable (hhm_ethn(1)) whatever is entered for one or even if it was entered in the 3rd occurrence as long as I ...