To learn more about question text, I suggest that you look at the workshop materials, specifically the CAPI Features section:
https://csprousers.org/mobile-workshop/05-capi.html
Note that the workshop materials are a bit old and fills now use ~~ instead of %. For example, where it says:
Est-ce ...
Search found 1877 matches
- March 31st, 2025, 9:09 am
- Forum: Entry
- Topic: Help Manual for a specific Question
- Replies: 5
- Views: 5243
- March 28th, 2025, 11:16 am
- Forum: Entry
- Topic: Issue using function LN, EXP, Power in sql query
- Replies: 3
- Views: 2573
Re: Issue using function LN, EXP, Power in sql query
SQLite has a variety of functions that you can use in queries: https://www.sqlite.org/lang_mathfunc.html
However, they are not enabled in the current version of CSPro. I will enable them for CSPro 8.1.
For now, you can mark a CSPro function as usable in a SQLite query: https://www.csprousers.org ...
However, they are not enabled in the current version of CSPro. I will enable them for CSPro 8.1.
For now, you can mark a CSPro function as usable in a SQLite query: https://www.csprousers.org ...
- March 26th, 2025, 10:55 am
- Forum: Entry
- Topic: Help Manual for a specific Question
- Replies: 5
- Views: 5243
Re: Help Manual for a specific Question
Are you wanting to add help text that is different from the question text? If so, this is a feature that exists:
https://www.csprousers.org/help/CSPro/capi_features.html
Help text: A help shortcut (F2 on desktop or the ? button on mobile) can bring up customized help information for each field ...
https://www.csprousers.org/help/CSPro/capi_features.html
Help text: A help shortcut (F2 on desktop or the ? button on mobile) can bring up customized help information for each field ...
- March 17th, 2025, 7:54 am
- Forum: Tools
- Topic: Excel to Cspro automatique
- Replies: 2
- Views: 7521
Re: Excel to Cspro automatique
Regarding approach #1, you could:
1) Create the single CSPro DB file from Excel to CSPro.
2) Create a CSPro batch application that splits this file into multiple output files. For this you can use the setoutput function:
https://www.csprousers.org/help/CSPro/setoutput_function.html
The example ...
1) Create the single CSPro DB file from Excel to CSPro.
2) Create a CSPro batch application that splits this file into multiple output files. For this you can use the setoutput function:
https://www.csprousers.org/help/CSPro/setoutput_function.html
The example ...
- March 5th, 2025, 3:51 pm
- Forum: Other
- Topic: Batch Editing is still useful to clean a Census :?:
- Replies: 1
- Views: 35693
Re: Batch Editing is still useful to clean a Census :?:
I think people generally pick tools that they are familiar with. A lot of people study languages like R or Stata while getting statistics degrees, or Python for data science. If I didn't know CSPro and I knew one of those languages, I would probably edit data using the tool with which I'm familiar ...
- February 27th, 2025, 7:34 am
- Forum: Synchronization
- Topic: A propros du CSWeb
- Replies: 3
- Views: 47502
Re: A propros du CSWeb
Malheureusement, le Census Bureau ne dispose pas d'un serveur de test CSWeb. Si vous effectuez des tests en local, vous pouvez essayer de configurer WampServer sur votre machine Windows pour effectuer le test:
https://www.csprousers.org/help/CSWeb/a ... setup.html
https://www.csprousers.org/help/CSWeb/a ... setup.html
- February 25th, 2025, 11:35 am
- Forum: Other
- Topic: CSWeb: Cannot delete a dictionary when we have more than 10 dictionaries.
- Replies: 8
- Views: 60499
Re: CSWeb: Cannot delete a dictionary when we have more than 10 dictionaries.
You'll have to have your IT person modify the data.twig file that I've attached. Unzip that file and put the file here: templates/data.twig
Then clear the var/cache directory and it should work.
Then clear the var/cache directory and it should work.
- February 20th, 2025, 1:15 pm
- Forum: Entry
- Topic: roster issue
- Replies: 2
- Views: 40891
Re: roster issue
Try something like this:
PROC S9B
if length ( strip (S9B)) < 4 then
errmsg ( 1 );
skip to SAVESTATUS_HMOD;
endif ;
numeric currently_entered_rows = totocc (SECTION_9_2_OWNED_LIVESTOCKS);
if currently_entered_rows = maxocc (SECTION_9_2_OWNED_LIVESTOCKS) then
advance to SAVESTATUS_HMOD ...
PROC S9B
if length ( strip (S9B)) < 4 then
errmsg ( 1 );
skip to SAVESTATUS_HMOD;
endif ;
numeric currently_entered_rows = totocc (SECTION_9_2_OWNED_LIVESTOCKS);
if currently_entered_rows = maxocc (SECTION_9_2_OWNED_LIVESTOCKS) then
advance to SAVESTATUS_HMOD ...
- February 20th, 2025, 12:47 pm
- Forum: Synchronization
- Topic: Missing data while synchronization
- Replies: 1
- Views: 31466
Re: Missing data while synchronization
Are you saying that you are missing cases, or only certain occurrences on a roster? We have never heard of any instances when occurrences were lost during synchronization. The only things that I can think of that might cause this are:
Multiple people are collecting data for the same case, and ...
Multiple people are collecting data for the same case, and ...
- February 20th, 2025, 12:42 pm
- Forum: Entry
- Topic: CSWeb / CSPro Dashboard
- Replies: 2
- Views: 30215
Re: CSWeb / CSPro Dashboard
Take a look at what the African Centre for Statistics has created:
https://tech-acs.github.io/chimera-docs/docs/developer/getting-started/introduction
https://github.com/tech-acs/chimera-starter-kit
You may find that this dashboard, which can use CSWeb as a backend, might be suitable for your ...
https://tech-acs.github.io/chimera-docs/docs/developer/getting-started/introduction
https://github.com/tech-acs/chimera-starter-kit
You may find that this dashboard, which can use CSWeb as a backend, might be suitable for your ...