Hi. We recently upgraded to SAS9 from SAS8 and some code I have is giving a different output, I am sure it is a simple thing to resolve but I cant find the answer anywhere and I was wondering if anybody could tell me what the solution is.    In SAS8 I use the following code    ods html path=' path ' (url=none)  body='test.xls'  style=minimal;    I then proc tabulate 20 tables              ods html close;    In SAS8 I get one excel spreadsheet called test.xls with 20 tables in a single sheet.  In SAS9 I get 20 excel spreadsheets called test1.xls test2.xls test3.xls etc, with a single table in each.    How do I get the output in SAS9 to be the same as I used to get in SAS8?    thanks in advance for any advice.         
						
					
					... View more