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.














One Response to “How to compare two Excel sheets using VLOOKUP? [FREE Template]”
Maybe I missed it, but this method doesn't include data from James that isn't contained in Sara's data.
I added a new sheet, and named the ranges for Sara and James.
Maybe something like:
B2: =SORT(UNIQUE(VSTACK(SaraCust, JamesCust)))
C2: =XLOOKUP(B2#,SaraCust,SaraPaid,"Missing")
D2: =XLOOKUP(B2#,JamesCust, JamesPaid,"Missing")
E2: =IF(ISERROR(C2#+D2#),"Missing",IF(C2#=D2#,"Yes","No"))
Then we can still do similar conditional formatting. But this will pull in data missing from Sara's sheet as well.