BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Elena
Obsidian | Level 7

Hi,

this code

proc tabulate data=monitoraggio missing;
class scadenza_mag scadenza_set ucc_m Tablet_m ;
label UCC_m='UCC'
Tablet_m='Punto di ritiro e consegna tablet';
table (ucc_m Tablet_m all='Totale') , (scadenza_mag scadenza_set )*(N=''*f=commax6.0 ) ;
format UCC_m scadenza. Tablet_m scadenza. scadenza_mag scadenza. scadenza_set scadenza.;
run;

generate this tabulate

HAVE.JPG

I want the row percent  only at the end of the table.

want.JPG

Thank

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

I think that you may want

proc tabulate data=monitoraggio missing;
   class scadenza_mag scadenza_set ucc_m Tablet_m ;
   label UCC_m='UCC'
           Tablet_m='Punto di ritiro e consegna tablet'
    ;
    table (ucc_m Tablet_m all='Totale') *(N=''*f=commax6.0 ) All='Percent'*rowpctn=' '  , 
             scadenza_mag scadenza_set  ;
    format UCC_m scadenza. Tablet_m scadenza. scadenza_mag scadenza. scadenza_set scadenza.;
run;

View solution in original post

2 REPLIES 2
Patrick
Opal | Level 21

Please provide sample data in the form of a fully working SAS data step suitable for the Proc Tabulate code you've posted so we can actually test the code changes we propose.

ballardw
Super User

I think that you may want

proc tabulate data=monitoraggio missing;
   class scadenza_mag scadenza_set ucc_m Tablet_m ;
   label UCC_m='UCC'
           Tablet_m='Punto di ritiro e consegna tablet'
    ;
    table (ucc_m Tablet_m all='Totale') *(N=''*f=commax6.0 ) All='Percent'*rowpctn=' '  , 
             scadenza_mag scadenza_set  ;
    format UCC_m scadenza. Tablet_m scadenza. scadenza_mag scadenza. scadenza_set scadenza.;
run;

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!

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.

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
  • 2 replies
  • 355 views
  • 1 like
  • 3 in conversation