BookmarkSubscribeRSS Feed
RobertWF1
Quartz | Level 8

I'm trying to create the binary format binary3. by concatenating the values 'binary', n, and '.', where n=3 is a value that will be read in from the data step (or possibly a macro variable).

 

So far the following code doesn't work - it should output a list of binary values for the integers 1 through 8 in the log file. Any ideas what's wrong with my format statement?

 

data _null_;
n = 3;
rows = 2**n;
/** construct one row at a time **/
format = cats('binary', char(n,1), '.');
do i = 1 to rows;
put @1 i format;
/* put @1 i binary3.;*/
end;
run;

4 REPLIES 4
andreas_lds
Jade | Level 19

Only the putc/putn function allow dynamic formats.

You could move the format-name to a macro-variable:

%let n = 3;
%let binaryformat = binary&n..;

data _null_;
   rows = 2**&n.;
   
   do i = 1 to rows;
      put i &binaryformat.;
      /* put @1 i binary3.;*/
   end;
run;
RobertWF1
Quartz | Level 8
Fantastic, thank you Andreas!
yabwon
Onyx | Level 15
data _null_;
  n = 3;
  rows = 2**n;
  /** construct one row at a time **/
  format = cats('binary', n, '.');
  do i = 1 to rows;
    b = putn(i, format);
    put @1 i b;
  end;
run;

B.

 

_______________
Polish SAS Users Group: www.polsug.com and communities.sas.com/polsug

"SAS Packages: the way to share" at SGF2020 Proceedings (the latest version), GitHub Repository, and YouTube Video.
Hands-on-Workshop: "Share your code with SAS Packages"
"My First SAS Package: A How-To" at SGF2021 Proceedings

SAS Ballot Ideas: one: SPF in SAS, two, and three
SAS Documentation



RobertWF1
Quartz | Level 8
Beautiful, thank you!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 344 views
  • 4 likes
  • 3 in conversation