BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
teddyee
Fluorite | Level 6

by ranking:

C>B>A>null

 

any proc sql code to get the max of the character?

 

i can get max of a numeric value, how to apply the same for character?

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

That's a sad state of affairs. See https://communities.sas.com/t5/SASware-Ballot-Ideas/create-string-summary-functions/idi-p/288035 and vote.

In the meantime, you can use   MAX=byte(max(rank(VAR1),rank(VAR2)))  since you only have one letter (and if you are not on mainframe).

View solution in original post

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

You can tie each lettet to a new numeric variable with the desired ranking such that if var = 'A' then rankvar = 1; if var = 'B' then rankvar = 2; and so on.

ChrisNZ
Tourmaline | Level 20

That's a sad state of affairs. See https://communities.sas.com/t5/SASware-Ballot-Ideas/create-string-summary-functions/idi-p/288035 and vote.

In the meantime, you can use   MAX=byte(max(rank(VAR1),rank(VAR2)))  since you only have one letter (and if you are not on mainframe).

Quentin
Super User

If you want aggregate max, i.e. the max of values found in a column, you can use the MAX() function the same way you would with a numeric variable.  If you want to find the the max of values within a row, you can't use the MAX() function, but you can use the MAX operator.

 

data have;
  input x $1. @3 y $1.;
cards;
A Q
C Q
B A
;
run;

proc sql;
  select max(x) as mymax from a;
quit;

mymax
C


proc sql;
  select x max y as mymax from have;
quit;

mymax
Q
Q
B

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 19416 views
  • 1 like
  • 4 in conversation