Is it possible to do sorting tranformation in charecter
variable??if can tell me one eg..
libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
hi guys ...i have one query... data abc; input s w k g o t a m; cards; 1 2 3 4 5 6 7 8 2 3 4 5 6 7 8 9 ; run; i want the output to be the sorted order(only variables).observations should not be changed..
How would you define the end of a macro? : sas-macro
What are the uses of sas?
What is connection profile? : sas-grid-administration
wat is sas? is a package or programming language?
How would you determine how far down on a page you have printed in order to print out footnotes?
How would you include common or reuse code to be processed along with your statements?
"What is the difference between proc sort nodup and proc sort nodupkey?"
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?