BookmarkSubscribeRSS Feed
Peter_Y
Calcite | Level 5

Hello:

   I wonder if there is any way in proc sql to select distinct formatted values. For example, the code below formats both 1 and 2 as "Agree". However, the select distinct statement returns two identical lines of "Agree". My assumption is that the distinct keyword applies only to raw value. Is there any generic way to force proc sql operate based on formatted value? By 'generic', what I mean is that I don't want to hand code any format in proc sql. The desired behavior is for proc sql to use whatever format assigned in the dataset for a specific variable. 

 

Thanks,

Peter

 

proc format;
value a
1,2='Agree';
run;

data test;
a=1; output; a=2; output;
format a a.;
run;

proc sql;
  select distinct a from test;
quit;
2 REPLIES 2
PaigeMiller
Diamond | Level 26
  select distinct put(a,a.) from test;
--
Paige Miller
Sajid01
Meteorite | Level 14

Format when applied do not impact or have an effect on data storage. They only modify the presentation.

The Proc SQL distinct will apply to what is stored in the dataset and not what is presented.

Thus, your dataset has two distinct values 1 and 2. That is why you see two "Agrees" in the output of your SQL output.

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
  • 1518 views
  • 0 likes
  • 3 in conversation