Whether you are an Excel Pro or just starting out, here is an easy to follow set of best practices on how to choose the right chart when presenting your data. Hope everyone finds this helpful. http://zebra.bi/blog/2015/04/22/infographic-choose-right-chart/
I posted this as a Pro Tip two weeks ago, but, for some reason, it doesn't show up in the pro tip section. Apologies to those who've seen it already.* By default, Excel inserts relative references (e.g. A1), which is great for copy/pasting and dragging, but sometimes you want to lock the column or row of the reference, or both. You do this by adding a $ in from of the part of the reference you want to lock (e.g. $A1 will lock the column).Use the F4 key on Windows while editing a formula to toggle between relative and absolute as illustrated here: https://imgur.com/a/wEsvrMac users: Command + T or Fn+F4 on Excel for Mac 2016 (according to Exceljet)
So I learnt something new today, and wanted to share the same.I was pulling out data from a pivot, but I needed the values in millions. I was manually converting the vales into millions by dividing it.I learnt, one can change the number format, in the custom format like this:#,##0.0,,Note the 2 commas after the format - this scales the number down by a factor of a thousand for each comma. More info and explanation on this here.
Saw this great paper being tweeted about this morning. Pretty short, but has virtually all of the everyone-can-do-this-but-they-don't tips and practices:HTML: http://www.tandfonline.com/doi/full/10.1080/00031305.2017.1375989PDF: http://www.tandfonline.com/doi/pdf/10.1080/00031305.2017.1375989?needAccess=true
CSV files are completely harmless right?Actually, not so much, as I found out:http://georgemauer.net/2017/10/07/csv-injection.htmltl;dr: You can run code (cmd, not VbA) directly from formulas that are in a .csv file, potentially allowing attacks to access your system.
The COUNT formula in Excel is denoted =COUNT(Start Cell:End Cell). This formula will return a value that is equal to the number of entries found within your desired range of cells. For example, if there are eight cells with entered values between A1 and A10, =COUNT(A1:A10) will return a value of 8. The COUNT formula in Excel is particularly useful for large spreadsheets, wherein you want to see how many cells contain actual entries. Don't be fooled: This formula won't do any math on the values of the cells themselves. This formula is simply to find out how many cells in a selected range are occupied with something. Using the formula in bold above, you can easily run a count of active cells in your spreadsheet. The result will look a little something like this:
An array formula in Excel surrounds a simple formula in brace characters using the format, {=(Start Value 1:End Value 1)*(Start Value 2:End Value 2)}. By pressing ctrl+shift+center, this will calculate and return value from multiple ranges, rather than just individual cells added to or multiplied by one another. Calculating the sum, product, or quotient of individual cells is easy -- just use the =SUM formula and enter the cells, values, or range of cells you want to perform that arithmetic on. But what about multiple ranges? How do you find the combined value of a large group of cells? Numerical arrays are a useful way to perform more than one formula at the same time in a single cell so you can see one final sum, difference, product, or quotient. If you're looking to find total sales revenue from several sold units, for example, the array formula in Excel is perfect for you. Here's how you'd do it:
The Excel DATE formula is denoted =DATE(year, month, day). This formula will return a date that corresponds to the values entered in the parentheses -- even values referred from other cells. For example, if A1 was 2018, B1 was 7, and C1 was 11, =DATE(A1,B1,C1) would return 7/11/2018. Creating dates in the cells of an Excel spreadsheet can be a fickle task every now and then. Luckily, there's a handy formula to make formatting your dates easy. There are two ways to use this formula:
To perform the division formula in Excel, enter the cells you're dividing in the format, =A1/B1. This formula uses a forward slash, "/," to divide cell A1 by cell B1. For example, if A1 was 5 and B1 was 10, =A1/B1 would return a decimal value of 0.5. Division in Excel is one of the simplest functions you can perform. To do so, highlight an empty cell, enter an equals sign, "=," and follow it up with the two (or more) values you'd like to divide with a forward slash, "/," in between. The result should be in the following format: =B2/A2, as shown in the screenshot below. Hit Enter, and your desired quotient should appear in the cell you initially highlighted.