by Ilker | Oct 24, 2018 | Excel Formulas
SUMIFS function can sum up the values in a range of cells, based on some criteria. In this guide, we’re going to show you how to use the SUMIFS function and cover some examples and error handling methods. Supported versions (Windows) Excel 2007 and above (Mac) Excel...
by Ilker | Oct 22, 2018 | Excel Tips & Tricks
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 using...
by Ilker | Oct 18, 2018 | Excel Macros, Excel Tips & Tricks
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 using VBA to...
by Ilker | Oct 18, 2018 | Excel Macros, Excel Tips & Tricks
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 which is the...
by Ilker | Oct 12, 2018 | Excel Macros, Excel Tips & Tricks
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...
by Ilker | Oct 12, 2018 | Excel Macros, Excel Tips & Tricks
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...
by Ilker | Oct 11, 2018 | Excel Macros, Excel Tips & Tricks
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 value We...
by Ilker | Oct 11, 2018 | Excel Macros, Excel Tips & Tricks
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...
by Ilker | Oct 10, 2018 | Excel Macros, Excel Tips & Tricks
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 that can...