unknown-1 wrote:
>In the current psppire version you can import delimited files with
>point or with comma, not both.
Should not be true. What have you actually tried?
Situation 1:
Syntax screen:
set decimal=comma.
Then Import Delimited Text Data. The data:
"var3";"var4"
7,88;89
5,3;6,2
In choose separators unmarked Comma and marked Semicolon.. Continue and things work fine.
Situation 2:
Syntax screen:
set decimal=dot.
Then Import Delimited Text Data. The data:
"var3";"var4"
7,88;89
5,3;6,2
In choose separators unmarked Comma and marked Semicolon.. Continue and things are messed up.
Situation 3:
Syntax screen:
set decimal=comma.
Then Import Delimited Text Data. The data:
"var1";"var2"
7.88;89
5.3;6.2
Continue (semicolon is already marked) and things are messed up.
Situation 4:
Syntax screen:
set decimal=dot.
Then Import Delimited Text Data. The data:
"var1";"var2"
7.88;89
5.3;6.2
Continue (semicolon is already marked) and things work fine.
Did I make any error with this test?
Have fun