Often, we need to input special symbols like €£¥©½» in to our Excel sheets. Now, how do we do that?

Simple, you can use Insert > Symbol to add several different kinds of symbols.
See this animation to understand how you can add symbols to an excel cell. (the file is kind of big, so give it a few seconds to load)

5 Bonus tips on using Symbols:
- You can just double click on the character to insert it. No need to press Insert button.
- You can quickly open insert symbol dialog by pressing ALT+I and then S. (related: 97 keyboard shortcuts to boost your excel mojo)
- You can use the symbols in formulas too. For eg. you can show ? or ? or ? based on change of one value wrt to another. Like this:
- =if(A1>A2, “↑”, if(A1<A2,”↓”,”↔”)) (related: in-cell charts)
- Quickly access symbols to specific to currency, arrows or greek chars (if you are in to that sort of thing) by using the drop-down at top-right (see above demo).
- Change the font to Wingdings / Webdings to see some useful and fun characters. You can spice dashboards or reports with these.














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