Search found 2399 matches

by josh
October 8th, 2015, 7:08 am
Forum: Entry
Topic: problem in putting the file into the right folder by bluetoo
Replies: 6
Views: 6113

Re: problem in putting the file into the right folder by blu

It seems like you were not logged when you made the last post (it came from Guest instead from Jing). That may be why you can't add the attachment.

It looks like you are doing the serverPath=/Ref/ command AFTER the Put command. Try moving the serverPath before the Put and see if that works.
by josh
October 7th, 2015, 9:36 pm
Forum: Entry
Topic: problem in putting the file into the right folder by bluetoo
Replies: 6
Views: 6113

Re: problem in putting the file into the right folder by blu

That looks it should work. Can you post the synclog.txt from device that is sending the files?
by josh
October 7th, 2015, 7:54 am
Forum: Entry
Topic: how to manage records
Replies: 1
Views: 1966

Re: how to manage records

This is totally possible. Just drag and drop the items onto the form in the order that you want the questions asked. You can also adjust the order by dragging the items in the form tree on the left side of the screen.
by josh
October 5th, 2015, 9:14 am
Forum: Entry
Topic: Edit Pre-entries (Lookup file)
Replies: 4
Views: 4679

Re: Edit Pre-entries (Lookup file)

Yes, notappl is only for numeric items. For alpha items, a blank value will be all spaces so using strip and comparing to "" is the easiest way to check for blanks.
by josh
October 1st, 2015, 4:13 pm
Forum: Entry
Topic: Edit Pre-entries (Lookup file)
Replies: 4
Views: 4679

Re: Edit Pre-entries (Lookup file)

Your logic to fill in the fields from the lookup file will be called every time the interviewer enters the field F1AM. So if you enter F1AM once, then modify the data and then reenter F1AM your changes are overwritten. One option would be to only load the data in if the fields on the form are curren...
by josh
September 30th, 2015, 10:26 am
Forum: Entry
Topic: editing instrument after pilot
Replies: 4
Views: 3173

Re: editing instrument after pilot

Don't regenerate forms. Just drag and drop the new fields onto the form.
by josh
September 29th, 2015, 5:05 pm
Forum: Feature Requests
Topic: Valuesets for tabulation applications..
Replies: 3
Views: 5511

Re: Valuesets for tabulation applications..

Have you looked at doing tables by area using an area names file?
by josh
September 29th, 2015, 5:04 pm
Forum: Entry
Topic: new to dropbox sync
Replies: 6
Views: 4742

Re: new to dropbox sync

It's possible that the paths in the sync spec (.pnc) file didn't match the directory layout that you had on the device when copied over from USB but it did match when you downloaded from Dropbox. Pretty much every problem people have with sync files are related to the paths in the sync spec not matc...
by josh
September 29th, 2015, 7:12 am
Forum: Entry
Topic: Skipping a roster and pre-filling some of the variables
Replies: 8
Views: 7999

Re: Skipping a roster and pre-filling some of the variables

In that case, just the loop index instead of the nextAvailable variable in the loop:

Code: Select all

numeric m;

do varying m = 1 until m > totocc(SECT1000) 
    S4aQ1(m) = S1Q1_IDNO(m);
    if s1q4a(m) >= 5 then
        S4aQ2(m) = "X";
    endif;
enddo;
by josh
September 28th, 2015, 2:55 pm
Forum: Entry
Topic: Skipping a roster and pre-filling some of the variables
Replies: 8
Views: 7999

Re: Skipping a roster and pre-filling some of the variables

Are you saying that you want a one to one correspondance between lines on sect 4a and section 1? In other words if there are ineligible household members in section 4a you still want blank lines in that section for them? If that is the case then you don't need the loop at the start of the form/roste...