79755811

Date: 2025-09-04 14:02:37
Score: 0.5
Natty:
Report link

Why not define a format and attach it to the variable VAR2?

proc format ;
  value $miss ' ' = 'Missing';
run;

PROC TABULATE DATA=XX missing ;
  CLASS var1 var2;
  TABLES var2, var1 / nocellmerge misstext = "0";
  format var2 $miss8.;
RUN;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Why not
  • High reputation (-2):
Posted by: Tom