table var1*var2, var3 is used in proc tabulate
In the listing file, it shows var1 and var2 in 1 column like
AAAAA
111 100
222 200
BBBBB
100 10
But, in HTML output, var1 and var2 are shown in 2 columns
AAAAA 111 100
222 200
BBBBB 100 10
How can I make the HTML output same as in listing output? Thanks
... View more