BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Toni2
Lapis Lazuli | Level 10

hi, the below macro is a part from a complex huge macro code. I have copied only the first part of the macro. (it is not complete)

 

What i don't understand is if the &prefix._continuous_bands_count_&i._&j.  dataset needs to pre-exist before i run the macro below or it is created by the macro? 

 

When i tried to run it i received an error that the dataset does not exist but i am not very sure if the macro creates empty dataset to be used later

 

 

%macro continuous_psi(prefix=,vars=,output=);
                                                                                                                  
	%let num_vars = %sysfunc(countw(%superq(vars)));

	%do i = 1 %to &num_vars.;

		%let var&i. = %qscan(%superq(vars), &i., %str( ));
		%put var&i. = &&var&i..;

		data &prefix._continuous_bands_count_&i.;
			set
%do j = 1 %to 6; &prefix._continuous_bands_count_&i._&j. (in = a&j.) %end; ;
%do j = 1 %to 6; if a&j. = 1 then band = &j.; %end; volume = max(0, volume); run;
1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
Toni2
Lapis Lazuli | Level 10
thank you

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—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
  • 2 replies
  • 896 views
  • 0 likes
  • 2 in conversation