Search found 397 matches

by sherrell
November 30th, 2023, 2:07 pm
Forum: Entry
Topic: SYSTEM CONTROL ERASING SKIPPED FIELDS
Replies: 1
Views: 8805

Re: SYSTEM CONTROL ERASING SKIPPED FIELDS

CSPro will not crash if you copy data from a skipped or protected field, though you do need to ensure there is data there to copy. Do you want the skipped field to be on-path? You will if you want the data in that field to be written out to the case. In that instance you need to check in the field's...
by sherrell
November 21st, 2023, 10:13 am
Forum: Entry
Topic: SUMMARY ROSTER
Replies: 20
Views: 1241088

Re: SUMMARY ROSTER

>Regarding the weight fields, they did have data when entered for the first time >but when you partially save and return, as you have already seen, they appear empty. Neither of the two cases in the data file you provided were partial, which is what I pointed out. For if a case was partial I might h...
by sherrell
November 20th, 2023, 5:52 pm
Forum: Entry
Topic: SUMMARY ROSTER
Replies: 20
Views: 1241088

Re: SUMMARY ROSTER

Hi Paul, [Issue 1] The data file you sent has two cases, both of which are complete. However when I tried to drop into the first case (0010101), CSEntry stops me on form IC1P2 at field PESO_INI1, as no data has been entered, indicating the case is NOT complete. In your logic for PROC R1P112 it check...
by sherrell
November 16th, 2023, 8:53 pm
Forum: Entry
Topic: SUMMARY ROSTER
Replies: 20
Views: 1241088

Re: SUMMARY ROSTER

Cases 0010101 and 0020101: When I tried to review these cases I am stopped at field R1P102, as the field displays an asterisk. This happens when the dictionary is changed and the case no longer aligns with the prior version of the dictionary. Changes that can cause this are when you modify dictionar...
by sherrell
November 8th, 2023, 11:29 am
Forum: Entry
Topic: SUMMARY ROSTER
Replies: 20
Views: 1241088

Re: SUMMARY ROSTER

Thank you for the consultation, in fact the example I sent does not have the details of housing, home, etc. First, the house is identified, then the home and finally a person from the home who would be chosen randomly to whom the questionnaire would be applied. of food consumption that would be eve...
by sherrell
November 6th, 2023, 1:11 pm
Forum: Tabulation
Topic: TABULATION
Replies: 1
Views: 4838

Re: TABULATION

You would just use the SUM function, referencing the male, female, and total variables.

https://www.csprousers.org/help/CSPro/sum_function.html
by sherrell
November 6th, 2023, 11:17 am
Forum: Entry
Topic: getvaluelabel
Replies: 6
Views: 11764

Re: getvaluelabel

I've made two passes. In the first app, you can pass a pointer to a function that makes the evaluation, but you'll just need to create a function for each variable you want to analyze. In the second app (v2, after consult with Greg :) ), you can pass a valueset in as a function argument. However sin...
by sherrell
October 20th, 2023, 11:02 am
Forum: Entry
Topic: File copy to csentry folder
Replies: 1
Views: 2929

Re: File copy to csentry folder

Unfortunately Android has locked things down pretty well. So just like other applications can't access the CSEntry folder, CSEntry can't access QField or other applications. What you can do is use the "downloads" folder as an intermediary folder to exchange/transfer files. See this post on...
by sherrell
October 9th, 2023, 9:14 pm
Forum: Entry
Topic: getvaluelabel
Replies: 6
Views: 11764

Re: getvaluelabel

Greg is out this week so let me respond. I haven't used the codes and labels feature, but it should be working. In the interim, you can do this, which is working for me: function string GetCheckboxLabel() string labels; do numeric ctr = 1 while ctr <= length ( strip (I1MULTI)) // I1MULTI_VS1.codes.l...
by sherrell
October 6th, 2023, 11:11 am
Forum: Entry
Topic: Consequences of the Len value modification in a dictionnary while using the data entry application
Replies: 2
Views: 3373

Re: Consequences of the Len value modification in a dictionnary while using the data entry application

>Will it be possible to modify the Len value for an item in the dictionnary while collecting data through the data entry application? Whether using a DAT or CSDB file I would avoid modifying variable lengths, whether to shorten or lengthen. If you must change something, I would introduce a new varia...