Excel Skills Exam 2 Flashcards
Freeze Panes
Freeze one cell below or to the right of the data you want to freeze
Click “View” and “Freeze Panes”
Simple Sort
Click a cell in the column you want to sort
Click Data
Click Sort & Filter (A to Z or Z to A)
Multilevel Sort
Click a cell in the column you want to sort
Click Sort & Filter
Select Custom Sort
Select Add Level
Select the column to sort by from the drop-down menu
Select the second column to sort by
One day
24 hours
One hour
1/24 = 0.041666
Noon
Halfway through the day
0.5
Week later
Add 7
Year later
Add 365
Net30
Add 30
Period employed
Termination Date - Hiring Date
Date Functions
=DATE(yr,mo,day)
=YEAR(datevalue)
=MONTH(datevalue)
=DAY(datevalue)
1/1/1900
Assigned as 1
AND
Checks if all conditions are TRUE
=AND(condition1, condition2)
=AND(A1>10,A1<20)
OR
Checks if at least ONE of the conditions is TRUE
If all of them are false, it returns as FALSE
=OR(condition1, condition2)
=OR(A1>10,A1<5)
Combining AND with IF
If both conditions have to be true for it to be valid
=IF(AND(A1>10,A1<20),”Valid”,”Invalid”)