Hi Guys, I am Shriram from Bangalore, India. I am new to this community/forum. I have just about started learning SAS and have lots of doubts. I would be glad and grateful if anyone can give me pointers on how to approach the subject, how to ask mny questions and any other suggestions. Heres is to a start of our association: Scenario 1: No problems and it works fine data _null_; x=123.45567; y=round(x,0.1); /* nth decimal place*/ z=round(x,100); /* nearest 100 place*/ m=round(x,10); /*nearest 10 place*/ put y; put z; put m; run; Scenario 2: how to round of columns of an incoming data set data roundtest; set <libref>.filename; then how to write the code for rounding of columns y w r l and k. (Attached screen shot of columns) the data comprises of columns y w r l and K and year. Now all these columns(except year) are in 8-9th decimal place. I want to round of to the first decimal place?...
... View more