Re:cannot read local sign in EpiData Entry classic 3.1
TRY THIS
FIELD1 BEFORE ENTRY IF (oeoe="湖") THEN GOTO FIELD2 ENDIF END END ------------------ ------------------ NAME:梁铭坚 ADD: 广州市越秀区东风中路503号东建大厦9楼广州社情民意研究中心调查室数据组 Tel: 83548519 13826023620 E-mail:17526206@qq.com
------------------ Original ------------------ From: "epidata-list-request";epidata-list-request@lists.umanitoba.ca; Date: Thu, Jan 8, 2015 02:00 AM To: "epidata-list"epidata-list@lists.umanitoba.ca;
Subject: EpiData-list Digest, Vol 134, Issue 2
Send EpiData-list mailing list submissions to epidata-list@lists.umanitoba.ca
To subscribe or unsubscribe via the World Wide Web, visit http://lists.umanitoba.ca/mailman/listinfo/epidata-list or, via email, send a message with subject or body 'help' to epidata-list-request@lists.umanitoba.ca
You can reach the person managing the list at epidata-list-owner@lists.umanitoba.ca
When replying, please edit your Subject line so it is more specific than "Re: Contents of EpiData-list digest..."
EpiData-list mailing list ___________________________________
Today's Topics:
1. Re:cannot read local sign in EpiData Entry classic 3.1 (epidata-list@lists.umanitoba.ca)
----------------------------------------------------------------------
Message: 1 Date: Tue, 6 Jan 2015 19:04:40 +0000 From: epidata-list@lists.umanitoba.ca Subject: [EpiData-list] Re:cannot read local sign in EpiData Entry classic 3.1 To: epidata-list@lists.umanitoba.ca Message-ID: CACEkZF9YvsoP6kMoXxkqOHgwPtzrSi0xoJn_YVScpYreSzKEoQ@mail.gmail.com Content-Type: text/plain; charset=UTF-8
Try to follow the chronology may be After Entry rather than Before Entry Not really clear from your command lines Other issue, you may want to try is: Clear the field first then Jump into I hope that this will help
Tieble
On 6 January 2015 at 18:00, epidata-list-request@lists.umanitoba.ca wrote:
Send EpiData-list mailing list submissions to epidata-list@lists.umanitoba.ca
To subscribe or unsubscribe via the World Wide Web, visit http://lists.umanitoba.ca/mailman/listinfo/epidata-list or, via email, send a message with subject or body 'help' to epidata-list-request@lists.umanitoba.ca
You can reach the person managing the list at epidata-list-owner@lists.umanitoba.ca
When replying, please edit your Subject line so it is more specific than "Re: Contents of EpiData-list digest..."
EpiData-list mailing list ___________________________________
Today's Topics:
- cannot read local sign in EpiData Entry classic 3.1 (epidata-list@lists.umanitoba.ca)
Message: 1 Date: Tue, 06 Jan 2015 07:25:45 GMT From: epidata-list@lists.umanitoba.ca Subject: [EpiData-list] cannot read local sign in EpiData Entry classic 3.1 To: epidata-list@lists.umanitoba.ca Message-ID: 1420529145447.8033.23498@webmail5 Content-Type: text/plain; charset=UTF-8
A user has sent this:I find a bug.
EpiData (Classic) Entry v3.1 donot read "湖"
for example
FIELD1 BEFORE ENTRY IF oeoe="湖" THEN GOTO FIELD2 ENDIF END END
the command cannot jump to field2. it has any way tosolve the problem. I suggest to use the new EntryClient and Manager instead . It seems for this standard jump, that you could use that one.
Or else use numbers or a letter a....z instead of the local sign "湖" regards Jens Lauritsen EpiData Association
EpiData-list@lists.umanitoba.ca http://lists.umanitoba.ca/mailman/listinfo/epidata-list
End of EpiData-list Digest, Vol 134, Issue 1
------------------------------
________________________________________ EpiData-list@lists.umanitoba.ca http://lists.umanitoba.ca/mailman/listinfo/epidata-list
End of EpiData-list Digest, Vol 134, Issue 2 ********************************************
epidata-list@lists.umanitoba.ca suggestion to "try this":
FIELD1 BEFORE ENTRY IF (oeoe="湖") THEN GOTO FIELD2 ENDIF END END
is a very good general advice in all situations where we apply if .
The suggestion was to change: from: IF oeoe="湖" THEN to : IF (oeoe="湖") THEN
This is also relevant for analysis. Good practice is therefore in all situations with "if" regardless of software:
do not write like this: if v1 = 1 or v2 = 2 then v3 = 2 which is "unsafe" practice in comparison to:
if (v1 = 1) or (v2 = 2) then v3 = 2
or even further enclosing in parenthesis:
if ((v1 = 1) or (v2 = 2)) then v3 = 2
regards Jens Lauritsen EpiData Association
participants (1)
-
epidata-list@lists.umanitoba.ca