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

hi,

I am sorry that , asking very basice questions in SAS.

what is the difference b/n the VALUE and INVALUE  statments in Proc format..

proc format;

value  $convert

'A+' = 100

'A' = 96

'A-' = 92

'B+' = 88

'B' = 84

'B-' = 80

'C+' = 76

'C' = 72

'F' = 65;

run;

data grades;

input @1 ID $3.  @4 Grade .;

format grade $convert;

datalines;

001A-

002B+

003F

004C+

005A

;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
4 REPLIES 4
kuridisanjeev
Quartz | Level 8

Hi...

Value Creates Format, Invalue Creates an informat for reading and converting raw data values.

Thanks&Regards.

Sanjeev.K

allurai0412
Fluorite | Level 6

thanks sanjeev ....for Breif answer..

Jagadishkatam
Amethyst | Level 16

Hi Allu,

No questions is less improtant, all the questions are equally important. Feel free to as any kind of question on SAS. There are many good members in this group who will provide there valuable suggestions to you.

With regard to your question,

value statement is used to create the formats to convert the numeric to character and character to character.

An informat is created to read and convert the data values using the invalue statement. it is mainly used to read the character data and convert to numeric.

In the above case invalue will work better.

proc format;

invalue  convert

'A+' = 100

'A' = 96

'A-' = 92

'B+' = 88

'B' = 84

'B-' = 80

'C+' = 76

'C' = 72

'F' = 65;

run;

data grades;

input @1 ID $3.  @4 Grade $;

/*format grade convert.;*/

new_grade=input(Grade,convert.); *To create the numeric value;

datalines;

001A-

002B+

003F

004C+

005A

;

run;

Thanks,

Jagadish

Thanks,
Jag
allurai0412
Fluorite | Level 6

Thanks Jagadish...

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
  • 4 replies
  • 2464 views
  • 3 likes
  • 3 in conversation