hi all
i am new to sas
i have been trying to create a report using this code but its not working properly
proc report data=work.test;
columns product state city;
define product /group;
define state /across
define city /across;
run;
results come out as
                              california     new jersey       los angeles     trenton
product 1
whereas i want the output to look like this
                              california           new jersey
                              los angeles         trenton
product 1
any idea how i achieve that
i want the across one underneath the other so it looks like grouping and not one after the other