Mod 4 - Intro to Excel Flashcards
Describe the basic layout of Excel
The spreadsheet file is called a workbook in which you can have several worksheets. Columns are labelled by letters & rows are labelled by numbers. Where a column & row intersect is a cell that each have their own unique addresses. You can have cell ranges that are separated by a colon.
ex. cell A3 or A3:B7
What are the different kinds of values that can be entered into cells?
- Labels: letters, punctuation, digits, etc.
- Numeric: pos/neg numbers (number format can be changed to reflect work - ex. number to currency)
- Formulas: ex. =A3/B2
- Boolean: true/false
Describe how a formula is set up.
All formulas in cells must start with “=” & can contain any combination of numbers, cell references, cell names, etc.
ex. A3 + B7; 17/4; 12*Tax_Rate
What order of operations is used in excel?
BEDMAS :)
What makes up a function?
- function name: identifies what calculation is to be performed
- function parameters (anything in the brackets): represents the data used to calculate
Give examples of functions
- =SUM(#, #, #)
- =AVERAGE(#, #, #)
- =PMT(#, #, #)
You can combine functions: =AVERAGE(#:#) + SUM(#, #)
You can nest functions: =SUM(AVERAGE(#, #), #, #)
How do you autofill?
Highlight a region & use the black plus to drag down and excel will recognize the pattern to autofill the cells.
What is absolute referencing?
When copied/filled in, the cells values do not change according to location, the values stay the exact same. Dollar signs are used for this.
ex:
$A$3 - row & column stay the same
$A3 - column stays the same but row changes
A$3 - column changes but row stays the same
What is a named range?
It is when a range of cells is selected & given a special name to make referencing easier. It is also an alternative to using absolute cell referencing.