VALLABSV not returning the correct value for missing strings
Minor
Closed - Fixed
Found:XS.01.12 31 JUL 2009
Fixed:XS.01.13 31 JUL 2009
DETAILS
The VALLABSV does not return the correct value for missing strings.
An effect of this is that a PQL form with a drop down choice for a string
variable with
missing values and labels, will not work.
EXAMPLE PROGRAM
program
string test
missing values test ("MISS")
value labels test ("MISS") "Is Missing"
WRITE [VALLABSV(-1,"TEST",1)] | this writes blank, not MISS
WRITE [VALLABSN(-1,"TEST",1)] | This writes "Is Missing" correctly
END PROGRAM