Is there a way to remove blank columns from a proc report? Essentially I want to remove any blank column since that is a combination that does not exist.
proc report nowindows data=mgp_Mean_Merge (where=(Matrix='Soil')) spanrows nowd;
columns timepoint Temperature ( 'Mean (Stdev, Percent Detected)' SBvalue,sample_org,moisture,bead);
define timepoint / group order=internal style(column)=[vjust=m just=l] format=timepoint. 'Timepoint';
define Temperature / group order=internal format=temp. 'Temperature';
define sample_org / across '';
define moisture / across '' format=wetdry.;
define bead / across '';
define SBvalue / group '';
run;
define sample_org / across '' NOZERO ;
define moisture / across '' format=wetdry. NOZERO;
define bead / across '' NOZERO;
If you don't want them in your report then drop those variables (variables with all missing values) before running the proc report.
Check this solution to drop variables with null values; https://communities.sas.com/t5/SAS-Procedures/Dropping-variables-with-null-values/td-p/185892
You might consider moving to proc tabulate as nested column/row combinations by default only have populated ones in the output assuming none of the records are actually missing the group or across variables (class in Tabulate)
Since you don't show what variable is actually analyzed I can't get more specific than that
define sample_org / across '' NOZERO ;
define moisture / across '' format=wetdry. NOZERO;
define bead / across '' NOZERO;
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.