Search found 2399 matches

by josh
March 3rd, 2016, 8:00 am
Forum: Entry
Topic: Sum within a roster with a skip
Replies: 6
Views: 5474

Re: Sum within a roster with a skip

When you have a skipped (blank) numeric value in CSPro the system assigns it the special value NOTAPPL. When you sum a group of values that includes a NOTAPPL value the sum also becomes NOTAPPL. You should exclude the NOTAPPL values. You can write the logic as follows: x6a = 0 ; if s5a1 <> notappl t...
by josh
March 2nd, 2016, 3:38 pm
Forum: Entry
Topic: CAPI data collection
Replies: 6
Views: 5316

Re: CAPI data collection

It would be easier to keep everything in one file and add a date variable to each case that you fill in using sysdate(). Then you can run frequencies or tables using the date to create reports.
by josh
March 2nd, 2016, 7:17 am
Forum: Entry
Topic: CAPI data collection
Replies: 6
Views: 5316

Re: CAPI data collection

Why do you need a separate file for each day?
by josh
March 2nd, 2016, 7:15 am
Forum: Entry
Topic: Directory Listing Error
Replies: 4
Views: 4206

Re: Directory Listing Error

This is during sync? If so please post the .pnc file and the synclog.txt file from the csentry directory of the device.
by josh
March 1st, 2016, 12:04 pm
Forum: Entry
Topic: Transfering files from tablet to laptop
Replies: 2
Views: 2303

Re: Transfering files from tablet to laptop

The .dat and .dat.not files are usually sufficient. Here is what the different files contain: .dat: the data itself (always copy this file) .dat.not: field notes (copy this if your interviewers use field notes) .dat.sts: partial save status (you can copy this if you want to know which cases are part...
by josh
March 1st, 2016, 11:49 am
Forum: Entry
Topic: How to read "notes" collected during fieldwork
Replies: 2
Views: 2816

Re: How to read "notes" collected during fieldwork

Check out the help page that describes the format of the notes file (the .dat.not file). The notes will be in that file. You can view it in any text viewer. You may need to scroll all the way to the right to see the notes.
by josh
February 29th, 2016, 6:57 am
Forum: Entry
Topic: Can a photo be synchronised?
Replies: 8
Views: 7877

Re: Can a photo be synchronised?

If you want to only sync the photos that have not already been synced it is a bit tricky. You would have to use sync from logic i.e. call the sync() function from your program logic. When you take the photos you could put them in a directory named "tosync". Then when you sync you use put t...
by josh
February 25th, 2016, 11:03 am
Forum: Other
Topic: Sub-Items
Replies: 12
Views: 11688

Re: Sub-Items

PERSON is a numeric variable. The occurrence label needs an alphanumeric or string. You can convert from the numeric to a string using maketext:
setocclabel(ROSTER000(curocc()), maketext("%d", PERSON));
by josh
February 25th, 2016, 7:10 am
Forum: Entry
Topic: Can a photo be synchronised?
Replies: 8
Views: 7877

Re: Can a photo be synchronised?

Synchronization works with any kind of file including photos. To upload the photo from client to server you simply need to add a line in the .pnc file like: Put myphoto.jpg but replace myphoto.jpg with the name of the photo file. If the photo file is not in the CSEntry directory you will need to use...
by josh
February 25th, 2016, 7:04 am
Forum: Other
Topic: Sub-Items
Replies: 12
Views: 11688

Re: Sub-Items

The index needs be in parentheses after the group name i.e. PERSON(curocc()) and not after the label as you have it. In addition setocclabel requires the group name (name of the roster) and not the name of the dictionary record. Without seeing your app I cant tell if PERSON is the group name but if ...