Best practice on this forum is to provide an example of your data, or use one of the SAS supplied training data sets such as SASHELP.CLASS that are installed. Then show what kind of expected output for the given data set is desired.
You provide data in the form of data step code, open a text box on the forum using the </> icon that appears above the message window and paste the code.
One of the basic procedures to "tabulate", assuming counts are what you are looking for is Proc Freq. Something like:
Proc freq data=thenameofyourdatasetgoeshere;
tables Weight_stat * Weight_StatusNew;
run;
The * between two variables means do a cross tabulation with the first variable as row heading the second as a column heading.