IT midterm 2025 - excel

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 72

flashcard set

Earn XP

Description and Tags

MGCR 331

73 Terms

1

ribbon

set of menus at the top of the excel program window, switch between by clicking the ribbon name

New cards
2

context menu

set of options appearing when you right click an object. quickly access common formatting choices like copy, paste, clear contents, delete, etc

New cards
3

right click on a sheet tab

rename sheet, or make a copy

New cards
4

function def.

shortcut that allows you to do a specific task/calculation. excel has many built in functions

must be proceeded by a = in order to work

New cards
5

function structure general

=FUNCTIONNAME(argument1, argument2)

  • no spaces in the naming

New cards
6

entering and formatting data into the excel sheet

  • left click cell to activate

  • press tab key to enter next cell or left click another cell

New cards
7

formatting text and numbers

automatically left justifies text and right justifies numbers

to change: home ribbon> options in number section

very big/small numbers are in scientific notation or “###” across its width

New cards
8

adjust width of a column

  1. drag the boundary

  2. Hover mouse over the dividing line> double click

New cards
9

sort data

data ribbon

  • numerical

  • alphabetical

sort wizard

  1. indicate if data has headers or not

  2. choose from dropdown, which col to sort

  3. choose how data is to be ordered:

    1. text A-Z or Z-A

    2. small- large or large- small for numbers

add level: first sort, second sort

New cards
10

cell references def

using a cells address and not explicit value, soft coding

  1. organization

  2. model builder adds notes and documentation to explain how you got values

  3. useful tools created

  4. easy to change

  5. enables goal seek and data tables

column(letter)row(number)

New cards
11

relative references def

refer to the position relative to the active cell, so this changes with where the mouse is

New cards
12

absolute referencing def

excel locking a reference (won’t change depending on where in the sheet you are)

do this by putting in a $, eg. $A$1 (can leave row or column relative like $A1 or A$1 also)

New cards
13

mathematical functions in excel

place = before the formula

follows BEDMAS

basic functions (requires at least one #):

  • =SUM() - addition

  • =PRODUCT() - multiplication

requires 1 #:

  • =SQRT() - takes the square root

  • =EXP() - takes the exponent

  • =LN() - takes the natural log

New cards
14

inequalities, comparisons

inequalities:

  • <= less than, equal to

  • >= greater than, equal to

  • <> not equal to

=#a=#b (are they equal)

check comparisons excel, returns output true or false

New cards
15

=and

evaluates true if and only if all included arguments are true

=AND(#a>#b, #d>#c)

New cards
16

=or

evaluates true if any statements are true

=OR(3>=5, 7<1) would return false

New cards
17

=if

user specifies preferred output depending on if logical statement is true or false

=IF(logical_test,[value_if_true],[value_if_false])

New cards
18

=count

identifies the number of numeric items in dataset → arguments can be a list or reference to a range

=count(value1,[value2])

New cards
19

=counta

identifies all items in a dataset, not just numeric values (eg can calculate number of non blank cells) → can be a list or a reference to a range

=counta(value1,[value2])

New cards
20

min and max

=min(number1,[number2]) → smallest number in a given set

=max(number1,[number2]) → biggest number in a given set

New cards
21

small and large - beyond max and min

=small(array,k) → returns the kth smallest number

=large(array,k) → returns the kth biggest number

New cards
22

rank

position of observation relative to the other data

=rank.eq(number, ref,[order])

returns rank in list of numbers, the ref

order: optional argument designating ascending =1 or descending =0

New cards
23

mean

=average(number1,[number2])

New cards
24

median

=median(number1,[number2])

New cards
25

variance

=var.s(number1,[number2])

New cards
26

standard deviation

=stdev.s(number1,[number2])

New cards
27

covariance

=covariance(array1, array2)

New cards
28

correlation

=correl(array1,array2) on a fixed scale from -1 to +1

New cards
29

=countif

counts the number of cells within a specified range meeting a specific criteria → criteria assumed to be an equivalence logic test but an inequality can also be specified

=countif(range, criteria)

New cards
30

=countifs

=countifs(criteria_range1,criteria1,[criterai_range2,criteria2])

this will count the number of cells within a specified range that meet all the specified criteria, each criteria range needs to have the same length

New cards
31

=sumif

will sum the values in the first range provided they meet the criteria

=sumif(sum_range,criteria_range1,criteria1)

=sumifs is for many criterias

New cards
32

=averageif

averages the values in first range provided they meet the criteria

=averageif(average_range,criteria_range1, criteria1)

=averageifs is for a range of numbers provided they meet many criteria

New cards
33

naming in excel

names cannot have spaces and must start with a letter, underscore, or backslash

  • name for each cells must be different

  • can reference the cell name you gave the range in formulas

New cards
34

=countblank(range)

counts the empty cells in a range

New cards
35

=unique

returns a list of unique values in a list or range

=unique(array,[bycolumn],[exactlyonce])

New cards
36

=round()

round to a specified number of digits

eg. =round(a1,2) will round a1 to 2 decimal places

New cards
37

=not()

want to make sure one value doesnt equal another

=not(logical_value)

New cards
38

freeze panes

view>freeze panes

New cards
39

conditional formatting

make patterns and trends more apparent in data, drop down menu, can apply rules

New cards
40

autofill

fills cells with data that follows a pattern or are based on data in other cells

New cards
41

flash fill

automatically fills your data when it senses a pattern

select array>data>flash fill

New cards
42

data validation

restricts the data type or the values that users enter into a cell like a drop down list

dropdown list:

data>data validation>settings: allow list > source box: type text that will be your options for the drop down

New cards
43

excel errors: #value!

finds spaces, characters, text, in a formula expecting a number

New cards
44

excel errors: #name?

excel cannot understand the name of the formula you’re trying to run

New cards
45

excel errors: ########

column isn’t wide enough to display the value you’ve inputted

New cards
46

excel errors:#div/0

dividing a formula by zero or an empty cell

New cards
47

excel errors:#ref!

formula is referencing an invalid cell

New cards
48

excel errors: #null!

when you specify an intersection of two areas that don’t intersect or when an incorrect range operator is used

New cards
49

excel errors: #n/a

numbers you’re trying referring to in your formula aren’t found

New cards
50

excel errors: #num!

contains invald numeric values

New cards
51

=xlookup

=xlookup(lookup_value,lookup_array,return_array)

with ranges:

=xlookup(lookup_value,lookup_array,return_array,[if_not_found],[match_mode],[search_mode])

match_mode:specify the match

  • default 0 - exact match and if none, return #n/a

  • -1 - exact match but if not found then return next smaller item

  • 1 - exact match but if none found then return the next bigger item

nested xlookups:

=xlookup(lookup_value,lookup_array,(xlookup(lookup_value,lookup_array,return_array))

New cards
52

pivot tables

cut data up to use more readily

New cards
53

goal seek, what if analysis

  • set cell to what you want to be the desired number

  • to value: to the desired value, type in

  • by changing cell: the cell that you need to change to get desired set cell

highlight the one you want to change to goal before even opening menu

data>what if analysis

New cards
54

data tables, what if analysis

See how different input values in single or multiple variables in a formula change the results of the formula. useful for sensitivity analysis

  • one variable - different inputs for a single variable → either row or column

  • two variables - row and column

highlight entire range of where you want to do the data table

data>what if analysis

New cards
55

financial functions: payment =pmt

=pmt(rate, nper, pv, [fv],[type])

New cards
56

financial functions: present value =pv

=pv(rate, nper, pmt, [fv],[type])

New cards
57

financial functions: future value =fv

=fv(rate, nper, pmt, [pv], [type])

put pmt and pv in as negative values

New cards
58

financial functions: type as an optional argument

type is the payment type

→ options:

0 or nothing (default): at the end of the period

1: at the beginning of the period

New cards
59

date

=DATE(year, month, day)

New cards
60

date serial number

days from 1900

New cards
61

prints todays date

=TODAY()

New cards
62

get the full name for the day

“DDDD” in text function

New cards
63

combine text

=CONCAT(text1,[text2])

New cards
64

find

=FIND(find_text,within_text,[start_num])

New cards
65

left

=LEFT(text, [num_chars])

New cards
66

right

=RIGHT(text,[num_chars])

New cards
67

middle

=MID(text,start_num,num_chars)

New cards
68

remove extra space from the text

=TRIM(text)

New cards
69

length (number of characters in string)

=LEN(text)

New cards
70

excel macros

powerful way to record actions you want repeated

New cards
71

use cases for macros

recording formatting highlighting hiding

can connect to other apps

New cards
72

get macros

developer section

New cards
73

drawback of recording macros

have to practice bc every click is recorded

New cards

Explore top notes

note Note
studied byStudied by 18 people
645 days ago
5.0(1)
note Note
studied byStudied by 121 people
893 days ago
4.5(2)
note Note
studied byStudied by 107 people
35 days ago
5.0(1)
note Note
studied byStudied by 7 people
686 days ago
5.0(1)
note Note
studied byStudied by 46 people
292 days ago
5.0(2)
note Note
studied byStudied by 11 people
888 days ago
5.0(1)
note Note
studied byStudied by 11 people
685 days ago
5.0(1)
note Note
studied byStudied by 2859 people
686 days ago
4.4(15)

Explore top flashcards

flashcards Flashcard (40)
studied byStudied by 10 people
661 days ago
5.0(1)
flashcards Flashcard (20)
studied byStudied by 25 people
540 days ago
5.0(2)
flashcards Flashcard (72)
studied byStudied by 2 people
541 days ago
5.0(1)
flashcards Flashcard (38)
studied byStudied by 25 people
372 days ago
5.0(1)
flashcards Flashcard (35)
studied byStudied by 44 people
410 days ago
5.0(1)
flashcards Flashcard (24)
studied byStudied by 1 person
825 days ago
5.0(1)
flashcards Flashcard (181)
studied byStudied by 5 people
701 days ago
5.0(1)
flashcards Flashcard (112)
studied byStudied by 9 people
1 day ago
5.0(1)
robot