BookmarkSubscribeRSS Feed
HK1
Calcite | Level 5 HK1
Calcite | Level 5

 

Can you let me know how to read in packed decimal data correctly. I have tried two different formats and it is not listing last digit correctly:

 

 

DATA _NULL_;                         

                                       

  ACCTI = '0123456789001234567C'X;  

  

  ACCTO = INPUT(ACCTI, PD10.);      

  PUT '1 ' ACCTI= HEX. ACCTO= 20.;   

                                

  ACCTO = INPUT(ACCTI,7 S370FPD10.); 

  PUT '2 ' ACCTI= HEX. ACCTO= 20.;   

                                       

RUN;   

The following is the info from SYSOUT

                                                                                         

1 ACCTI=0123456789001234567C ACCTO=123456789001234560

                                                     

2 ACCTI=0123456789001234567C ACCTO=123456789001234560

 

Thanks

4 REPLIES 4
Shmuel
Garnet | Level 18

To read PD you need use informat  S370FPDw.   where w is the length in bytes:

 

6 bytes enable 11 digits and a sign - should be read by: input var s370fpd6.

HK1
Calcite | Level 5 HK1
Calcite | Level 5
Thanks for the info. Here I am trying to read max 18 digits and there is C at the end. Thought in the scenario we will need PD10?
Shmuel
Garnet | Level 18
That's right - s370fpd10.
Kurt_Bremser
Super User

@HK1 wrote:
Thanks for the info. Here I am trying to read max 18 digits and there is C at the end. Thought in the scenario we will need PD10?

Usually, dec_fixed numbers are defined in PL/1 with an uneven number of digits, as you will need 10 bytes for 18 or 19 digits anyway, so the programmer takes the larger digit count.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 4 replies
  • 1284 views
  • 0 likes
  • 3 in conversation