Posts

Showing posts with the label Tutor

An easier way to calculate compound interest in Excel

Image
  Do you want to calculate how much your current savings might be worth in 10 years or in 30 years? It’s an easy calculation that doesn’t require any specific function in Excel. Some simple multiplication, addition and exponentiation is all you need. Still, the answer you will most likely get if you search for “compound interest in Excel” on Google is the FV function. The FV function is difficult to use, and it actually calculates compound interest based on a monthly rate rather than a yearly rate, which gives a slightly different result. If you have $1,000, the yearly return is 8% and you let it compound for 10 years, you would calculate it like this: Of course, in Excel we don’t want to hardcode anything in the formula, so we’ll put the numbers in separate cells. This is how you can set it up: Now you can change any of the variables in C2, C3 and C4, and the Future value will update instantly. If you want to use the FV function instead, this is how it’s done. As mentioned above, ...

Summarize a whole table in Excel without writing a formula

Image
  Instead of typing a SUM formula, an easier way to go is to use the shortcut Alt + Equal sign (=) But did you know that you can use this shortcut for a whole table? If you have a table like the one below, select all the values  plus one extra row and one extra column : And use the shortcut: Alt + Equal sign (=) Instantly, Excel inserts all the formulas and calculates the sums:

Create a drop-down list in Excel in 3 minutes!

Image
  Creating a drop-down menu in Excel may look difficult, but it’s actually super easy! It won’t take you more than 3 minutes the first time you do it, and when you get the hang of it, it only takes a few seconds! Just follow these 3 steps to create a drop-down list in Excel: 1. Create a list of the items that you want to appear in the drop-down menu. 2. Name the list. Select the range and press  Ctrl+Shift+F3  to open the name manager. If the list has a headline (it should!), choose Top row. 3. Create the drop-down menu. Now you can create a drop-down menu anywhere you want in the workbook. Select a cell and press  Alt, then D, then L  to open the Data Validation window. Choose List in the first field. In the source field, simply press  F3  to retrieve your list names and choose the one you want for this drop-down. Done! Note: If you want to create many drop-down menus in one workbook, it might be a good idea to create all the lists in one tab.

Make SUMIFS and COUNTIFS in Excel more flexible with a Wildcard

Image
  How to use a wildcard In the example below I have used the COUNTIFS function to count the number of members who fulfill the two criteria in the report, and the SUMIFS function to calculate the total amount paid if both criteria are met. =COUNTIFS(B2:B11,G2,D2:D11,G3) =SUMIFS(C2:C11,B2:B11,G2,D2:D11,G3) But what if you only want to see how many gold members there are, no matter if they have paid or not? Or you want to see the total payments, regardless of membership level? If you leave G2 or G3 empty, the formulas will return zero. The only way to do it without changing the whole setup is to use a wildcard. The wildcard character in Excel is asterisk (*), and all you have to do is to type an asterisk in the criterion field(s). For example, if you replace “Gold” in G2 with an asterisk (*), the formulas will not consider the Membership criteria, and the results will be the totals of all members who have paid the fee. Make your report more user-friendly If someone else is going to us...