Here is a quick Excel tip to kick start your week.
Sometimes, we want to enter same data in to several cells. You can use CTRL+Enter to do this in a snap.
- Select all the cells where you want to enter the same data.
- Type the data
- Press CTRL+Enter
- Done!
See the animation aside to understand how this works.
Using CTRL+Enter to fill blanks with same value
We can use this technique to fill all the blank cells too.
- Select all the cells, Press F5
- Select “Special”
- Select “Blanks” to select all blank cells
- Now type whatever you want
- Press CTRL+Enter
- Done!
See this demo to understand this technique.

That is all for now. I have a lot of work to do since we are re-opening VBA classes this Wednesday (11th Jan). See ya.
Do you use CTRL+Enter? Share your tips & uses?
I use CTRL+Enter often when I need to fill in the same value in multiple places. What about you? Do you use this? How do you use it? Please share using comments.
Some more awesome Excel tips for you:
- Quickly Fill Blank Cells in a Table
- Quick Comparison of Data using Row Differences
- Delete Blank Rows in Excel
- More Excel Quick Tips














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).