SAS Data Management

SAS Data Integration Studio, DataFlux Data Management Studio, SAS/ACCESS, SAS Data Loader for Hadoop, SAS Data Preparation and others
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.

Really simple...

 

I am running a bunch of proc freqs, but I need to make a million graphs and when I export the proc freqs to an excel it's not allowing me to unmerge the cells making it very tedious to create graphs quickly in excel.

 

How do I remove the percent, row percent and col percent from my output? I only want to see frequency.

 

thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
jklaverstijn
Rhodochrosite | Level 12

If this is using proc freq, add the options NOPERCENT NOCUM to your TABLES statement.

 

Hope this helps,

- Jan.

View solution in original post

3 REPLIES 3
jklaverstijn
Rhodochrosite | Level 12

If this is using proc freq, add the options NOPERCENT NOCUM to your TABLES statement.

 

Hope this helps,

- Jan.

christinagting0
Quartz | Level 8

awesome thank you. I was using that but forgot the "/" in my code!

 

Here is my final line in my code:

 

tables site*tsi_acc_rs_cat / norow nofreq nocol;
Jagadishkatam
Amethyst | Level 16

Please use nocol, norow and nopercent options to suppress them in the output.

 

proc freq data=have;

table x*y / nocol corow nopercent;

run;

 

Thanks,
Jag

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 102607 views
  • 9 likes
  • 3 in conversation