Search found 128 matches

by MrTaco
November 30th, 2017, 8:07 am
Forum: Entry
Topic: Exporting Occurrences to SPSS
Replies: 0
Views: 33621

Exporting Occurrences to SPSS

Hi

I would like to export Occurrences with data, how do i do it.

eg. Kitchen utensils.

Refer to image below.

Thanks in advance
by MrTaco
June 16th, 2017, 1:22 pm
Forum: Entry
Topic: Picking current date but changing when viewing the case
Replies: 12
Views: 11656

Re: Picking current date but changing when viewing the case

Hi

But how do I restrict it from changing if it has been entered

Code: Select all

preproc
// Fill in interview date automatically based on current date
$ = sysdate("YYYYMMDD");
It's numeric not Alphanumeric
Thanks
by MrTaco
June 7th, 2017, 5:45 am
Forum: Other
Topic: Set Household number Restriction
Replies: 1
Views: 3235

Set Household number Restriction

Hi guys

I want to restrict HH_Number not be entered twice in 2 different questionnaires.

Code: Select all

if $ = HH_Number then
	errmsg("You must select another number");
	reenter;
endif;
but it's not working.
by MrTaco
May 29th, 2017, 3:23 pm
Forum: Synchronization
Topic: Usage of CSweb
Replies: 26
Views: 26094

Re: Usage of CSweb

hi htuser

please send the screens

thanks in advance
by MrTaco
May 23rd, 2017, 9:26 am
Forum: Other
Topic: logic on form not working
Replies: 3
Views: 4852

logic on form not working

Hi

I tried to insert logic the form but it not working.

Code: Select all

PROC SECTION_9_HIV_COUNSELLING_A_F001
preproc
if Q6_2 = 1 then skip to SECTION_10_HIV_RISK_PERCEPT_FORM;endif;
What could be the same the problem
by MrTaco
May 22nd, 2017, 3:54 am
Forum: Other
Topic: Preproc 5 questions
Replies: 3
Views: 4963

Re: Preproc 5 questions

please refer to the attachment.

Code: Select all

PROC Q6_8J

preproc
if Q6_8G = 2 and Q6_8H = 2 and Q6_8I = 2 then skip to Q6_15;endif;
I normally use this logic above but i thought the could be a shorter and best logic to solve.
by MrTaco
May 21st, 2017, 11:47 am
Forum: Other
Topic: Preproc 5 questions
Replies: 3
Views: 4963

Preproc 5 questions

is there a way to preproc all 5 questions eg. Q1 = 2, Q2 = 2. etc if answer is = 2 to skip

instead of using this logic:

Code: Select all

PROC Q6_8J

preproc
if Q6_8G = 2 and Q6_8H = 2 and Q6_8I = 2 then skip to Q6_15;endif;
thanks
by MrTaco
April 19th, 2017, 1:45 pm
Forum: Entry
Topic: Creating a Variable to Concat and Export a Daily Data
Replies: 3
Views: 4454

Re: Creating a Variable to Concat and Export a Daily Data

let's say am working on one data file and my data is accumulative everyday and i only want to concat and export the ones that has been captured for the day. 1. do I create function for it so data collectors can select then it concat and export the data that has been collected for the day. 2. or do I...
by MrTaco
April 19th, 2017, 10:09 am
Forum: Entry
Topic: Creating a Variable to Concat and Export a Daily Data
Replies: 3
Views: 4454

Creating a Variable to Concat and Export a Daily Data

Hi Guys

Is there any possibilities that i can (Creating a Variable to Concat and Export a Daily Data), so that my data collectors can just select then it does that the job.

Thanks
by MrTaco
March 27th, 2017, 2:03 pm
Forum: Other
Topic: Commas to separate numbers
Replies: 5
Views: 6385

Re: Commas to separate numbers

then is there a way to restrict it to only allow numbers and commas