Search found 14 matches

by jiofack
March 7th, 2021, 11:21 am
Forum: Entry
Topic: menu settings
Replies: 8
Views: 4181

Re: menu settings

The principle is simple and clear.
Thank you.
by jiofack
March 4th, 2021, 12:25 am
Forum: Entry
Topic: menu settings
Replies: 8
Views: 4181

Re: menu settings

The keyword skip will allow you to jump around, but it also considers skipped data as deleted. The keyword advance, moves through the logic till the end of entered data. If the field can't be blank the advance will stop and issue a warning. The menu option "advance to end" will function i...
by jiofack
February 20th, 2021, 10:43 am
Forum: Other
Topic: Get a codebook with questions texts and modalities
Replies: 2
Views: 1881

Re: Get a codebook with questions texts and modalities

Thank you.

I used the IHSN tool. I will see if I can customised the option to create a file with the elements I want only.
by jiofack
February 18th, 2021, 9:47 pm
Forum: Other
Topic: Get a codebook with questions texts and modalities
Replies: 2
Views: 1881

Get a codebook with questions texts and modalities

Dear all, What I want: I want to get a documentation for my application with the questions texts (if possible with two languages) and the modalities (for a specified or the first value set if there is / or if there are many). What for: The idea is to use it for the control / test of the application ...
by jiofack
January 26th, 2021, 7:47 am
Forum: Entry
Topic: entering by own EA's
Replies: 3
Views: 1917

Re: entering by own EA's

Hi,
You can use a file for assignation. In that file will be indicated who works where.
In the menu with the interviewer code (or team code), you will check that he is working or no in the indicated EA.
by jiofack
September 21st, 2020, 7:28 am
Forum: Entry
Topic: Modification in prefilled data fields
Replies: 4
Views: 2058

Re: Modification in prefilled data fields

Hi,

You can use the following for numeric

PROC MY_ITEM
preproc
if visualvalue(MY_ITEM) = notappl then
//you load
endif;
by jiofack
September 8th, 2020, 6:37 am
Forum: Tools
Topic: Specify value set to be exported
Replies: 4
Views: 3421

Specify value set to be exported

Hi to all, How to specify the value set to use for exportation. Before using the multilanguage dictionnary, we used to set VS1 for english and VS2 for french. For exportation, it was considering the valueset on the top. For those applications, how can I set exportation such that it exports VS1 or VS2?
by jiofack
September 7th, 2020, 4:42 am
Forum: Entry
Topic: Entering 0 in the field by just pressing Enter key
Replies: 3
Views: 1778

Re: Entering 0 in the field by just pressing Enter key

Hi,
You can prefill the field to 0 (Preproc $ = 0;) so later you will modify or just validate the 0.
by jiofack
July 18th, 2020, 9:06 pm
Forum: Entry
Topic: Date with subitems
Replies: 2
Views: 1598

Re: Date with subitems

Thank you,

It was not having zerofill yes
by jiofack
July 18th, 2020, 2:44 am
Forum: Entry
Topic: Date with subitems
Replies: 2
Views: 1598

Date with subitems

Hi to all, I am having a date that I wanted to keep with the subitems. Unfortunalely when I leave the subitems in the dictionary, when reopening the case, it comes with a default value eventhough the subitems are filled. My logic on the date field is Preproc if visualvalue($) = notappl then $ = sysd...