Search found 366 matches
- August 2nd, 2023, 10:40 am
- Forum: Android
- Topic: APK Download Link
- Replies: 4
- Views: 1793
Re: APK Download Link
The post you are responding to is over 2.5 years old and is referring to an older version of CSEntry. Is there a reason you can not use the current version (7.7.3) that can be downloaded for free from PlayStore?
- August 2nd, 2023, 10:36 am
- Forum: Synchronization
- Topic: Error: unable to read response from server. See log file for details
- Replies: 6
- Views: 2374
Re: Error: unable to read response from server. See log file for details
This post was also submitted to cspro@lists.census.gov where it was handled. Several data files had become corrupted on their server which was preventing the synchronization from working properly.
- July 18th, 2023, 10:42 am
- Forum: Entry
- Topic: how to display the field note with csdb
- Replies: 3
- Views: 502
Re: how to display the field note with csdb
Oh, I thought you wanted to display notes on the go/within the current case ("I need to display the notes simultaneously on the supervisor's listings from file csdb"). But it looks like you're looping thru all cases in a file and writing any notes found to an html file. So what exactly are...
- July 17th, 2023, 11:09 am
- Forum: Entry
- Topic: how to display the field note with csdb
- Replies: 3
- Views: 502
Re: how to display the field note with csdb
First, are you confident there is a note in your data file for the dictionary element in question? For example, if you open your csdb file in DataViewer, do you see a yellow box next to the field of interest? Second, are you making a proper reference to it, particularly if it is a repeating field, t...
- July 5th, 2023, 5:56 pm
- Forum: News
- Topic: How to randomly select respondents for other sections
- Replies: 1
- Views: 13837
Re: How to randomly select respondents for other sections
Hi Paul, There are many ways to do this. One would be to create a list of persons from your household as the household is being constructed using CSPro's list feature: https://www.csprousers.org/help/CSPro/list.html Then use the random function with the upper bound being equal to the number of peopl...
- June 15th, 2023, 11:43 am
- Forum: Entry
- Topic: Image/Photo variable
- Replies: 1
- Views: 823
Re: Image/Photo variable
[1] Regarding "take more than 1 photos in the same outlet/household", is the problem naming the file? If so, there were these two posts: a] Josh back in 2020 (which I believe was to you?) https://www.csprousers.org/forum/viewtopic.php?p=11895 b] naming using timestamp: https://www.csprouse...
- June 15th, 2023, 10:35 am
- Forum: Entry
- Topic: Auto mathematical calculations using numeric items
- Replies: 5
- Views: 912
Re: Auto mathematical calculations using numeric items
In addition to blocks you can also just save the value to a local variable on entry, then write it back to the cell on exit.
But since B19 is being calculated, you also have the option of just repeating the calculation on exit.
Sherrell
But since B19 is being calculated, you also have the option of just repeating the calculation on exit.
Sherrell
- May 19th, 2023, 4:52 pm
- Forum: Synchronization
- Topic: Unhandled exception has occured in your application
- Replies: 2
- Views: 2173
Re: Unhandled exception has occured in your application
Hi Mosbi,
It’s likely that you might have cases with the partial save set for the case but with no partial save field. See if Savy's reply to this similar post helps:
viewtopic.php?p=15782
Sherrell
It’s likely that you might have cases with the partial save set for the case but with no partial save field. See if Savy's reply to this similar post helps:
viewtopic.php?p=15782
Sherrell
- May 19th, 2023, 3:00 pm
- Forum: Synchronization
- Topic: How to use POWER BI to extract data on CSWeb?
- Replies: 5
- Views: 1258
Re: How to use POWER BI to extract data on CSWeb?
>Failed to add configuration for RENFORCEMENT. Access denied for user 'vimpl1697' <etc>
The user vimpl <etc> needs full permissions on the database. You'll need to allow this via MySQL admin.
Sherrell
The user vimpl <etc> needs full permissions on the database. You'll need to allow this via MySQL admin.
Sherrell
- May 19th, 2023, 12:05 pm
- Forum: Entry
- Topic: Problem with sum of numeric items
- Replies: 4
- Views: 1420
Re: Problem with sum of numeric items
When a numeric field is skipped it's value is notappl. And you can't perform arithmetic with it at that point, it needs to have a numeric value. Therefore I suggest you set skipped fields to zero, which you can do as follows: PROC B16 // no logic here PROC C3 preproc if B16=1 then // or whatever you...