SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
xxformat_com
Barite | Level 11

Hi,

 

An offset variable is listing in macros dictionary.

I've never seen any other value than offset=0.

Do you know when it could be different? What is this information for?

 

proc sql;
   select *
   from dictionary.macros;
quit;

 

1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

Hi @xxformat_com,

 

The column VALUE in dictionary.macros has a fixed length of 200 bytes. So, if the value of a macro variable is longer than 200 characters, it will be split into substrings of up to 200 characters to fit into multiple records of dictionary.macros. The second, third, ... record will then have OFFSET values of 200, 400, etc.

 

Addendum: See the 2020 post Re: When are dictionary tables updated? for a case where this OFFSET column helped to understand how dictionary tables work.

 

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

Example of OFFSET and explanation here: https://www.lexjansen.com/nesug/nesug06/po/po06.pdf

--
Paige Miller
FreelanceReinh
Jade | Level 19

Hi @xxformat_com,

 

The column VALUE in dictionary.macros has a fixed length of 200 bytes. So, if the value of a macro variable is longer than 200 characters, it will be split into substrings of up to 200 characters to fit into multiple records of dictionary.macros. The second, third, ... record will then have OFFSET values of 200, 400, etc.

 

Addendum: See the 2020 post Re: When are dictionary tables updated? for a case where this OFFSET column helped to understand how dictionary tables work.

 

xxformat_com
Barite | Level 11
Thank you @FreelanceReinhard

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