SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
robertrao
Quartz | Level 8


Hi Team,

I have a variable with values Y and N . Except that for one observation it is LEV.

I wrote a format as shown below;

value $SER

"Y", "LEV " = "YES"

"N"="NO"

;

RUN;

i apply the format

format variable $ser.

Unfortunately, the LEV stays as LEV and its messing my proc freq!!!!!

I want it to convert to YES

Could anyone help me please???

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
AncaTilea
Pyrite | Level 9

Sorry, I had capital "YES" and "Yes".

Try this:

PROC FORMAT;

  VALUE $SER

  "Y" = "Yes"

  "LEV " = "Yes"

  "N"="NO"

;

QUIT;

DATA temp;

  input x $;

  cards;

  Y

  Y

  N

  LEV

  N

  Y

;

PROC FREQ DATA = temp;

  TABLES x;

  FORMAT x $ser.;

RUN;

View solution in original post

7 REPLIES 7
robertrao
Quartz | Level 8

I tried all the options like copy pasting the LEV from the dataset while creating format.

adding spaces to the left and to the right  and so on.doesnt work out!!!!

AncaTilea
Pyrite | Level 9

Hi.

How about this?

PROC FORMAT;

  VALUE $SER

  "Y" = "Yes"

  "LEV " = "YES"

  "N"="NO"

;

QUIT;

robertrao
Quartz | Level 8

Hi,

Thanks for the reply. It doesnt help...

Thanks

AncaTilea
Pyrite | Level 9

Sorry, I had capital "YES" and "Yes".

Try this:

PROC FORMAT;

  VALUE $SER

  "Y" = "Yes"

  "LEV " = "Yes"

  "N"="NO"

;

QUIT;

DATA temp;

  input x $;

  cards;

  Y

  Y

  N

  LEV

  N

  Y

;

PROC FREQ DATA = temp;

  TABLES x;

  FORMAT x $ser.;

RUN;

robertrao
Quartz | Level 8

This might work fine . But in My situation I do not understand how LEV is written.

Do youi recommend removing leading and trailing spaces if any///////////????

Could you show me how to acheive that?

Thanks

AncaTilea
Pyrite | Level 9

Say, one way would be to use the compress function on your variable:

data temp2;

  set temp;

/*remove blanks*/

           z = compress(x);

  format z $ser.;

run;

proc freq data = temp2;

  tables z;

run;

robertrao
Quartz | Level 8

Hey Thanks a ton;

I decided to see what its length is and put so many trailing blanks. and went to see the attributes.

Its displayed as "LEV" in the dataset but when i pull using IN option(filtering on the editor) to see the different types I found it with the full form..

LEVEL. So I put "LEVEL"="YES" in my format immediately and it worked.

Thanks for your time.

Great Help

sas-innovate-white.png

Join us for our biggest event of the year!

Four days of inspiring keynotes, product reveals, hands-on learning opportunities, deep-dive demos, and peer-led breakouts. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

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
  • 7 replies
  • 1825 views
  • 3 likes
  • 2 in conversation