Excel 2013 Hide Filter Icon in a Table

This tip applies to Excel 2013 only. If you have used the Format as Table option on a table you now have the ability to turn off the filter icons in the header row without losing the filter that has been applied. The new Option is in the Table Style Option section of the DESIGN ribbon, see image below.

Continue ReadingExcel 2013 Hide Filter Icon in a Table

VBA Functions

If want to see a list of the functions available in the VBA language just type vba. in the code window You don't need to include vba. when using the function in code. If you see a function with a $ in its name it means it returns a string (text) eg UCase$ (Thanks to John Walkenbach for this tip.) Click here to see how you can run a Macro off a Quick Access Toolbar icon.

Continue ReadingVBA Functions

Two Spaces

There are two types of spaces in Excel. The normal space and one that is called a non-breaking space, often found on websites. When using some of Excel's features Excel doesn't recognise the other type of space. You can use the following formula to convert all non-breaking spaces in a cell to the normal space. Assume the text is cell A1. =SUBSTITUTE(A1,CHAR(160),CHAR(32)) The CHAR function allows you to refer to ASCII characters by their number. 160 is the non-breaking space,…

Continue ReadingTwo Spaces

End of content

No more pages to load