Hi, I have a dataset with a variable that contains some numbers as "x.y" and others as "x,y".. and I would like to do a univariate analysis on that variable, but sas categorizes the ones with a comma in between as missing. I tried to convert the commas with Commax and comma and numx and nothing seems to Work! Also tried locale but that doesnt make a difference. Please help 🙂 What can be done? Thanks in advance! Janet My variable's name is s_result (it's a character and I converted it to numeric). The code is as such: data dist2; set dist (rename=(s_result=s_result_char)); s_result=input(s_result_char, best.); proc univariate; VAR s_result; run;
... View more