Excel Tips and Tricks
How to line up decimals in Excel using Number Formatting
Lining up the decimal places is the desired structure for some applications, especially in a finance context. With this, you can make the decimal portion of numbers start from the same place, regardless of how many digits the consist of. You can do this...
How to make Excel capitalize first letter using VBA
More often than not, to save time or for the sake of laziness, people enter data in all lowercase or all uppercase. Transforming this type of data into the proper format can be a serious headache. Let us show you how to make Excel capitalize first letter...
How to convert selection to Excel lowercase using VBA
Is changing the all letters to lowercase manually taking too much time? Let us show you how to convert selection to Excel lowercase using VBA and automate this process. Both Excel and VBA have a function to do this. Both functions use a single argument...
How to make Excel change case to uppercase using VBA
Changing lowercase characters into uppercase is a pretty tedious task if you're doing it manually. In this article, we're going to show you how to make Excel change case to uppercase using VBA Both Excel and VBA have a function to do this. Both use a...
How to remove characters in Excel using VBA
You can remove characters by replacing a character with an empty string (""). Although you can do this by going through all such cells in a selection or specified range using Find & Replace, in this article we're going to show you how to remove...
How to have Excel convert formula to value using VBA
Printing values instead of the formulas themselves can help protect your IP or prevent users from changing them. In this article, we're going to show you how to have Excel convert formula to value using VBA. How to have Excel convert formula to...
How to delete all named ranges with #REF Excel errors using VBA
Named ranges with #REF! error occur when there is a 'reference' error. This usually happens when the cell or range itself is removed. For example, if there is a named range that refers to cells in Sheet1!B3 and you delete an entire row, column, or...
How to compare two rows in Excel using VBA
Comparing data row by row manually can be a tedious process if done manually. Let us show you how to compare two rows in Excel using VBA and automate this process. How to compare two rows in Excel using VBA VBA has a built in function called StrComp...
How to compare two columns in Excel using VBA
Comparing columns of data manually is not a realistic approach when working with large data sets. Let us show you how to compare two columns in Excel using VBA and automate this process. How to Compare two Columns in Excel VBA has a built in...