Search found 2399 matches

by josh
December 21st, 2015, 10:24 am
Forum: Entry
Topic: duplicate case ids message but no identical number ???
Replies: 11
Views: 13000

Re: duplicate case ids message but no identical number ???

You need to include all previous levels in the hierarchy the lower levels of the hierarchy. So the ppg dictionary should have two id items: region and operation, the goal dictionary should have three id items: region, operation and ppg etc... This way you have unique ids in all the files. In loadcas...
by josh
December 21st, 2015, 9:41 am
Forum: Entry
Topic: Multiple value sets
Replies: 2
Views: 5352

Re: Multiple value sets

You can define multiple value sets for the main variety variable in the dictionary and then use the command setvalueset() from logic to change the value set based on the crop chosen. setvalueset() is usually used in the onfocus proc so your logic would look something like: PROC MAIN_VARIETY onfocus ...
by josh
December 18th, 2015, 10:52 am
Forum: Entry
Topic: duplicate case ids message but no identical number ???
Replies: 11
Views: 13000

Re: duplicate case ids message but no identical number ???

The indexing is done on whatever variables you put as ID items in the dictionary so just put the 7 digits under the ID items.
by josh
December 18th, 2015, 10:46 am
Forum: Entry
Topic: exporting data into one single file
Replies: 1
Views: 2373

Re: exporting data into one single file

You can use the concatenate data tool to combine the data files from the individual tablets and then export the concatenated file with the export tool.
by josh
December 18th, 2015, 6:49 am
Forum: Entry
Topic: Cascade with ext. dictionary look up
Replies: 4
Views: 5201

Re: Cascade with ext. dictionary look up

The way loadcase works is to concatenate all the arguments you pass it into a single string and then it matches that string with the case id's in the data file. That means that if you have REGION (1 digit) and country (2 digit) then: loadcase(MYDICT, REGION, COUNTRY) is exactly the same thing as: lo...
by josh
December 18th, 2015, 6:42 am
Forum: Entry
Topic: variable names/labels
Replies: 5
Views: 5062

Re: variable names/labels

Yes, you are correct. Export uses the dictionary labels but data entry uses the form labels. In 6.2 you can make them linked but in 6.1 they are always separate so if you change one you need change the other manually.
by josh
December 18th, 2015, 6:41 am
Forum: Entry
Topic: duplicate case ids message but no identical number ???
Replies: 11
Views: 13000

Re: duplicate case ids message but no identical number ???

Try using the CSIndex tool from the tools menu to identify what CSPro thinks the duplicate is.
by josh
December 16th, 2015, 5:03 pm
Forum: Entry
Topic: Continuous roster
Replies: 3
Views: 3961

Re: Continuous roster

I would probably just add additional variables for the dry and fresh e.g. DRY_QUANTITY, DRY_UNIT... FRESH_QUANTITY, FRESH_UNIT...
by josh
December 16th, 2015, 10:52 am
Forum: Entry
Topic: Continuous roster
Replies: 3
Views: 3961

Re: Continuous roster

You can create one record that contains all the columns for all three pages and then create three separate rosters, one for each page. Just only drag the columns onto the form that you want on each page.
by josh
December 16th, 2015, 10:50 am
Forum: Entry
Topic: Cascade with ext. dictionary look up
Replies: 4
Views: 5201

Re: Cascade with ext. dictionary look up

Maybe I'm missing something obvious but the only problem I see with region to operation cascade is that the data file only contains countries in Africa. If choose Africa (1) as the region it seems to work fine. If you add the countries for Europe, Americas... to the data file it should work for thos...