@tmjeffer wrote:
PaigeMiller, I do thank you for all of your help. There's really no need for the condescending tone when helping people. I'm manipulating variables in an existing data set (used a set statement). There's nothing else to see other than the PROC TABULATE.
PROC TABULATE DATA = C_METHOD MISSING; CLASS HOME DELIVERY CF_TOTAL ; TABLE(HOME ALL),DELIVERY CF_TOTAL ALL *N*F=COMMA10./RTS=30 PRINTMISS MISSTEXT = "0"; KEYLABEL ALL= "Total" N=' ' ; LABEL HOME = 'Cities' DELIVERY = 'Method of Delivery';
RUN;
Considering that Proc Tabulate is one of the few procedures that can use multilabel formats a carefully defined multilabel format for the Delivery variable would likely give you what you want. But I can't be sure because you have not given any concrete input data to your proc tabulate. And I'm not going to spend any time trying to create fake data that might or might not have some resemblance to your actual data.
Instructions here: https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712 will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the {i} icon or attached as text to show exactly what you have and that we can test code against.
... View more