Search found 49 matches

by Arjun Brti
February 1st, 2024, 12:09 am
Forum: Entry
Topic: Names in Case Tree
Replies: 2
Views: 504

Re: Names in Case Tree

Hello,

To hide the case tree,
1. Open your .ent file
2. Go to form view.
3. Click on Options.
4. Click on "Data Entry" (a data entry dialog box will opens.
5. Chick on "Show case tree" options and choose Never or as you want.
Then deploy your app on android.
by Arjun Brti
October 10th, 2023, 4:21 am
Forum: Entry
Topic: Name Generation
Replies: 7
Views: 6476

Re: Name Generation

Try by changing your var from string to numeric.
by Arjun Brti
October 9th, 2023, 11:56 am
Forum: Entry
Topic: Name Generation
Replies: 7
Views: 6476

Re: Name Generation

Valueset is used for numeric variable. Your var is string so you should used "Valueset string Respondent_valueset".
by Arjun Brti
October 9th, 2023, 11:45 am
Forum: Entry
Topic: Mobile Verification
Replies: 2
Views: 3790

Re: Mobile Verification

Hi Romij If your a09 is a string variable you can used the following code: 1. If you want to check the 11 digits of phone number: if length(strip($))< 11 then errmsg("Mobile number must be 11 digits !!!"); reenter; endif; 2. If you want to check the number only: if not $ in "0":&...
by Arjun Brti
October 4th, 2023, 6:21 am
Forum: Entry
Topic: Filter a multiple response based on the previous not selected choices
Replies: 2
Views: 2652

Re: Filter a multiple response based on the previous not selected choices

I am using this code. try this. PROC SecondQues onfocus valueset string selectMulti; do numeric ctr = 1 while ctr <= FirstQues_VS1.length() if not ischecked(FirstQues_VS1.codes(ctr), FirstQues) then selectMulti.add(SecondQues_VS1.labels(ctr), SecondQues_VS1.codes(ctr)); endif; enddo; setvalueset(Sec...
by Arjun Brti
August 1st, 2023, 2:58 am
Forum: Entry
Topic: Concatenate or prefill function problem
Replies: 3
Views: 1630

Re: Concatenate or prefill function problem

Is your EIN variable numeric or string. If it is numeric convert it to string. Than try using this logic.
by Arjun Brti
August 1st, 2023, 2:01 am
Forum: Entry
Topic: Automatic Skip problem
Replies: 2
Views: 778

Re: Automatic Skip problem

Please try this:

PROC D7_1
preproc
ask if D6_1= 10 or D6_2= 10 or D6_3= 10 or D6_4= 10;
by Arjun Brti
June 27th, 2023, 12:51 am
Forum: Entry
Topic: problems to sum variables
Replies: 2
Views: 1819

Re: problems to sum variables

Hi PHINOJOSA,

Your sum logic is not working because all other variable are skipped if there are <=15 section in each grade. You can use following logic,

PROC ADHESIVOS_MUESTRA_LEVEL
preproc
setproperty("SpecialValuesZero","Yes");

Thanks.
by Arjun Brti
June 15th, 2023, 12:24 am
Forum: Entry
Topic: Auto mathematical calculations using numeric items
Replies: 5
Views: 2419

Re: Auto mathematical calculations using numeric items

I think you can create the "Blocks" using B19 and other variables (two or more variables), which appear in a single screen on android. For more about Blocks:
https://www.csprousers.org/help/CSPro/blocks.html

If other user have other ideas they will share.

Thanks.
by Arjun Brti
June 14th, 2023, 6:30 am
Forum: Entry
Topic: Image/Photo variable
Replies: 1
Views: 1953

Image/Photo variable

Dear team I have a variable take Image/Photo. Now, I want to add logic that, enumerators must take the image in that variable (could not leave without take the photo) and if the image already taken and if the enumerator move the curser backward or edit the data, I want to jump that variable. Also, I...