Have you ever wondered how to print excel sheets in one page across? so that when you print a large excel spreadsheet the output can be read one page after another, as the normal way (instead of reading the output sideways and down)
Of course, we can use the print settings in Excel to do this very easily.
In Excel 2003:
It is a bit sneaky in Excel 2003 and earlier, but totally worth it.
Go to Print Settings, and from “page” tab, set the Fit to “1” pages wide by and leave the tall field blank (if there is a value, just remove it).

In Excel 2007+:
From the Page Layout ribbon tab, set the width to “1 page” and height to “automatic” to print the worksheet in one page across.

In Excel 2010, it is even more simpler as you can use the backstage view to tell excel how you want your sheets to be printed.
More printing tips for excel and bite sized yummy excel tip cookies for you to chew.














3 Responses to “Filter one table if the value is in another table (Formula Trick)”
What about the opposite? I want a list of products without sales or customers with no orders. So I would exclude the ones that are on the other table.
Good question. You can check for the =0 as countifs result. for example,
=FILTER(orders, COUNTIFS(products, orders[Product])=0)
should work in this case.
PS: I have added this example to the article now.
Hi there!
Could i check if there was a way to return certain fields of the table only?
so based off your example above, i would like to continue to use the 'Products" table as a way to filter out items from my "Orders" table, but only want to show maybe only the "Product" and "Order Value" fields, rather than all 5 fields (sales person, customer, product, date, order value).