Hi All.. SAS getting automatically closed when i run this bellow code.. Is this a bug???Any IDEA??? Proc Format; value xyz 1="Yes" 2="NO"; run; Now i supposed to add one more value to this format for the value 3. i am writing code like this.. Proc Format; value xyz 3="Don't know" other=[xyz.]; run; Actually in above code i have to specify new format name,but i forgot and i did't get any error too. Now i am applying this format to a dataset; data a; input x; format x xyz.; cards; 1 2 3 ; run; i really wondered after running above code ,because SAS getting Closed automatically.i tried this for couple of times but same result. Why this is happening??? Any Idea about this???? Thanks &Regards.. Sanjeev.K
... View more