Course Notes Day 3
Course Notes Day 3
Case 1:
Because the references are not fixed, Excel automatically adjusts
the column letter and the row numbers, and you won’t need to do it
cell by cell. The conclusion is that, if you are pasting a formula
along the vertical or the horizontal axis, the program will
automatically change the column and row references accordingly.
Therefore, we can say the references are moving – they are not
static.
Fixing Cell References
≡
Fixing Cell References
Case 2:
This time, I would like to calculate the prices in Euro. In cell D9 we have the USD/Euro conversion rate. I
basically need to multiply these three cells by zero point nine. It is easy to calculate the price for Product A.
The way to paste the same formula below is to put a dollar sign in front of the reference you would like to keep
still. Here – both the column and the row value of the conversion rate must be fixed.
The much quicker way to do that is to press F4 while typing the formula.
Fixing Cell References
Case 3:
2x
Row references can be fixed as well. If I fix the row reference 11 after “C,” when I copy the formula
downwards, the cell row will remain static.
The quicker way is to use F4 again, but this time, it should be pressed not once, but twice.
Group Columns & Rows
The professional way to hide rows and columns is by using Excel’s Group functionality.
Group Columns & Rows
Whenever we do, a symbol will appear on the top of the sheet if we are hiding a column, and on its left side if
we are hiding a row.
Group Columns & Rows
The dots above each column show the column is part of a group. The thing is that we are not certain which
group they are part of, as there can be multiple groupings. The thick line above helps us figure this out. It
continues to the right, where you get to the minus sign, which would allow you to hide the group when you
press it.
Group Columns & Rows
These little numbers on the left represent the different rows in the hierarchy of the grouping. The higher the
number, the more columns that will be visible! See how, when I press each one, the number of columns
displayed changes. Remember this field with the group's hierarchy will always be here to help you!
Group Columns & Rows
To ungroup a group, you must again select the two adjacent columns or cells that have already formed a
group and then press the Ungroup button located just below the Group button in the Data tab.
Group Columns & Rows
Group:
Ungroup:
Remember that grouping works only for adjacent rows and columns and never on multiple ranges. Besides, a
single column or a single row can still form a group!
When you get accustomed to this functionality, you want to learn a shortcut and apply it faster. The shortcut
for adding a group is Alt, Shift, and Right arrow. If you would like to remove a group, you can do that by
pressing Alt, Shift, and Left Arrow.
Group Sheets
Whenever you have to carry out the same operation on multiple sheets, you can use the grouping
functionality.
There are two ways to group sheets in Excel. The first one involves holding the Ctrl key and then selecting the
other sheets, one by one. The second way is to hold the Shift key and press the last worksheet to be
grouped.
Group Sheets
You should always remember that you are working in Group mode, and every time a cell in one of these
sheets changes, the other sheets will change as well. Therefore, try to be alert when grouping sheets.
You can exit group mode easily – click on one of the sheets outside your group without using Control or Shift,
and you can edit sheets as usual – one by one.
Find and Replace - Formulas
Often, you want to replace a word, name, or reference with another one. Find and Replace is Excel’s go-to
tool, allowing us to find and replace text. It can find and replace text in cells and formulas.
The Find & Replace is in the Home tab, under Find & Select. A much quicker way to open Find & Replace is
to use the Ctrl and H shortcut.
Find and Replace - Formulas
Find & Replace is a very, very useful tool. However, you have to be very careful too! Make sure
you are not changing cells that are outside the area you would like to change. That’s an important
check to make that will prevent costly mistakes.
Find and Replace - Formatting
Excel will put a border to the print area of your sheet. If you print it, only the selected area will be printed.
Circular References
When you work in Excel, there will be situations when you will run
into circular references unintentionally.
- Excel indicates a circular reference through the blue line you can
see here;
- Excel will display an error message
- In the bottom left corner, Excel will always tell you which cell
contains a circular reference
Circular References
In the table we have here, you can see the forecast values for Capex. Now, try to imagine if the main input for
the calculation of D&A was not Beginning PP&E, but Ending PP&E. Then, the D&A should equal the product
of the Ending PP&E and the D&A rate.
However, that’s a circular reference - the D&A value is one of the three addenda that sum up to Ending
PP&E.
You can open the Formulas tab and press the Trace Precedents button to
check the input cell references of a given cell.
By clicking on Trace Dependents, you can verify which cells use the given
cell as an input.
Another functionality from the Formula Auditing group that must be mentioned is Show Formulas. Instead of
their results, the formulas will appear in the cells of the spreadsheet. After you unclick the button, the sheet
will revert to its initial appearance.
The shortcut for this command Ctrl and back quote (or Ctrl and Grave). This functionality will help you when
you are at a later stage of creating a worksheet, and you want to verify if your formulas are correct quickly.
Nested Functions
C4:C12
E4:E12
C18
SUM() allows Excel users to add the numbers within a given cell range.
In this example with football teams, let's say that you would like to sum the number of games played by Italian
teams. You have to type SUMIF(): =SUMIF(C4:C12; C18; E4:E12)
Sum; Sumif; Sumifs
SUMIFS() function is a lot like SUMIF() although it is able to work with more than one condition.
Let's say that you would like to find out how many points English teams which participated in the Champions
league earned.
Sum; Sumif; Sumifs
C16 D16
Therefore, your first condition is England, and the second one is Yes under “Champions League. Please note
that unlike SUMIF(), SUMIFS() starts with the sum range:
To round the output of a function, you need ROUND(). You only have to indicate the number you would like to
change and the number of digits around the decimal point you would like to consider.
Round Functions
ROUNDUP(), for example, will always round numbers upwards. it pushes negative values down, towards
minus infinity, away from zero. Don’t fall in the trap of thinking negative values will move towards 0.
ROUNDDOWN() uses the opposite logic of ROUNDUP() – values will be rounded downwards towards zero.
Round Functions
Finally, sometimes, you will see the MROUND() function. Its output is a number rounded to a specified
multiple. Here we have chosen a multiple of three ( MROUND(#,3) ).
Why do we see an error at the end? That’s because Excel displays a number error whenever the multiple and
the number reference are with different signs.
Iferror
=IFERROR(F7/$F$13; “n.a.”)
F13