Search found 2399 matches

by josh
September 22nd, 2016, 6:58 am
Forum: Entry
Topic: Factors Roster
Replies: 4
Views: 4304

Re: Factors Roster

Search the forum for "ranking". You will find that others have asked similar questions including the following: http://www.csprousers.org/forum/viewtopic.php?f=1&t=969&p=2555 http://www.csprousers.org/forum/viewtopic.php?f=1&t=1605&p=4662 http://www.csprousers.org/forum/vie...
by josh
September 21st, 2016, 2:45 pm
Forum: Entry
Topic: radio button multiple choice
Replies: 4
Views: 4990

Re: radio button multiple choice

All the sessions are there. Just go to http://teleyah.com/cspro/DCJune2015/ to see the list.
by josh
September 14th, 2016, 9:02 am
Forum: Entry
Topic: Sequencial ID number
Replies: 2
Views: 3560

Re: Sequencial ID number

ID items cannot be sequential in CSPro however there are some workarounds. This a question that has been discussed before on the forum. Here a some answers: http://www.csprousers.org/forum/viewtopic.php?f=1&t=1277&p=3775 http://www.csprousers.org/forum/viewtopic.php?f=1&t=920&p=2386 ...
by josh
September 10th, 2016, 2:23 am
Forum: Entry
Topic: write value in roster culomn
Replies: 5
Views: 4761

Re: write value in roster culomn

In the PROC for your size column you can assign a value to the second column. For example if the dictionary variables for your columns are named SIZE and SECOND then you could write logic like this: PROC SIZE if SIZE = 1 then SECOND = 0.350 ; elseif SIZE = 2 then SECOND = 0.450 ; elseif SIZE = 3 the...
by josh
September 10th, 2016, 2:16 am
Forum: Entry
Topic: roster new column
Replies: 5
Views: 4306

Re: roster new column

In the addition to the examples, which are a good resource, we have some tutorials and training videos on our website:

http://www.census.gov/population/intern ... odocs.html
http://www.census.gov/population/intern ... ideos.html
by josh
September 9th, 2016, 11:45 am
Forum: Entry
Topic: roster new column
Replies: 5
Views: 4306

Re: roster new column

New variables added to the dictionary are not automatically added to the form. This is because there are times when you don't certain variables to be on the form. To add the new variable to the roster, while viewing the form, drag the item from the dictionary on the left side of the screen and drop ...
by josh
September 8th, 2016, 11:12 pm
Forum: Entry
Topic: Order chekbox choices
Replies: 1
Views: 2260

Re: Order chekbox choices

There is now way to tell the order of the options checked for check boxes. If the order is important you could use a series of questions with dynamic value sets where every time an option is selected you remove it from the value set. You can find example here: http://teleyah.com/cspro/DCJune2015/05-...
by josh
September 8th, 2016, 12:59 am
Forum: Android
Topic: How to specify that data must be stored on a sdcard
Replies: 2
Views: 3685

Re: How to specify that data must be stored on a sdcard

Most modern Android devices don't mount as USB when connected to Windows computers. Most use Media Transfer Protocol instead which doesn't create a drive letter and doesn't support any easy way to copy files from a batch file. If you know Windows programming it is possible to write code in VB or C# ...
by josh
September 8th, 2016, 12:49 am
Forum: Android
Topic: How to add a new row in CAPI Mode
Replies: 5
Views: 7187

Re: How to add a new row in CAPI Mode

Make sure you are doing long press on the repeating record itself, not on one of the items in the record.
by josh
September 8th, 2016, 12:47 am
Forum: Entry
Topic: data filter
Replies: 5
Views: 4891

Re: data filter

You can do this from the user interface by choosing "End Group" from the menu (the main menu in Android, Navigation menu on Windows).

You can also do this from logic using the endgroup statement.