BookmarkSubscribeRSS Feed
GeorgeSAS
Lapis Lazuli | Level 10

Hello everyone,

How I can remove variable y's format in proc sql?

proc sql noprint;

create table two as

select x,  y format=_null_ from one;

quit;

Thanks

5 REPLIES 5
BrunoMueller
SAS Super FREQ

Hi George

Proc SQL expects a format name in the syntax, you could use a generic one like BEST. for numeric values. In order to remove a format from a variable, you can use Proc DATASETS.

Something like

proc datasets lib=work nolist;

  modify two;

    format y;

run;

  contents data=two;

run;

quit;

Will work

Tom
Super User Tom
Super User

No, one of the limitations of way that PROC SQL supports formats.

Now you could trick SAS into thinking you have created a NEW variable so not have the format (or the label for that matter) carried forward.

select x, y+0 as y ....

brucehughw
Obsidian | Level 7

Will the trick you suggest work for character variables? I have all sorts of airport codes, e.g. KBOS maps to 'Logan International ...', but

sometimes I just want KBOS, so that I can save that in a macro variable that I later use as an argument to a macro.

 

Thanks, Bruce

Reeza
Super User
Use a plain jane character format.
Format=$50.
brucehughw
Obsidian | Level 7
Ah, so easy. Thanks!

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 5 replies
  • 6887 views
  • 1 like
  • 5 in conversation