proc report to dynamically display report using macros
1.selection criteria dynamically ex:city=Atlanta, Washington 2.dynamically pick the variables(columns) to display 3.dynamically display total
proc report to dynamically display report using macros
1.selection criteria dynamically ex:city=Atlanta, Washington 2.dynamically pick the variables(columns) to display 3.dynamically display total
In a SAS Foundation session (plain old display manager SAS, not using other SAS clients such as SAS Studio or Enterprise Guide) you can use the WINDOWS
option
proc report data=sashelp.cars windows;
run;
In a wider environment (web client or EG) you will be creating a parameterized stored process. There are numerous resources on the web, for instance, a Bing search for "creating a stored process report in eg" might direct you to the hands on workshop paper Creating and Using SAS® Stored Processes with SAS® Enterprise Guide®