Hi All, I'm trying to subset a dataset by using where clause on a variable, v_h, with the following format. v_h : type = Num, Len = 8, Format = 4.1, Informat = 4.1 When using proc freq on v_h, there are records of v_h = 1.4, but when using where clause to filter the dataset by v_h = 1.4, there are 0 records /*returned 0 records*/ data test;
set have(where=(v_h=1.4));
run;
data test;
set have;
if v_h = 1.4;
run; I also received a message : "NOTE: Data file have.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance." Could anyone help me to figure out what went wrong? Thanks!
... View more