data set management Flashcards
How do you highlight missing values or blank cells
Conditional formatting>New Rule>Format only cells that contain> change to blank
What does Count Blank do, and How is it helpful?
count the number of empty cells in a range of cells.
it can tell you how many total cells are blank compared to how many cells should be filled
How do you Highlight duplicate records
conditional formatting>Highlight cell rules>Duplicate values
How do you remove duplicates using the remove duplicates button in data?
Data>remove duplicates>(check: data has headers)(each column you want to delete from)
all duplicates showing up the 2nd time will be removed
how do you remove duplicates using filter button in data?
select all the data you want to filter>filter(advanced)>Unique records only
How do you delete a comma from a list of names?
ex: Danie ,Revie
To delete comma:
- find & select or ctrl + h
- replace all
- find what: [space] comma
- replace with: [space]
how do you split names in excel using text to columns?
- text to columns
- deleminate
- spaces
- chose a destination
- finish
how do you split names using find & replace?
the first name only
for first name:
replacing the last name with nothing:
ctrl + h = find and replace
1. (space *) in the find what category
- * means any character
2. don’t put anything in the replace with category
3. replace all will then delete all the last names
how do you split names using find & replace?
the last name only
replacing the first name with nothing:
ctrl + h = find and replace
1. (*space) in the find what category
- * means any character
2. don’t put anything in the replace with category
3. replace all will then delete all the last names
how do you remove the middle name using find and replace
- space*space
- space (still want a space between the names)
- replace all
how do you split names using flash fill
- using flash fill, manually write in the first, first name
- start on the second name, but notice it will guess the next names
- press tab
how do you rearrange names using flash fill?
- Same thing applies here, type in the first cell what format you want. In this particular cell it’s name, name
- doing the same thing in the second cell will activate flash fill
how do you use a formula to split just a first and last name?
just the first name
- find the character number of the space character
- we’re looking to extract everything to the left of it for the first name
- find space character =search(“ “, A2)
- find the number of characters you need to extract for the first name, add a -1 to the equation =search(“ “, A2)-1
- pull the characters needed from the left of the space so add the function LEFT(A2) to the equation =LEFT(A2, SEARCH(“ “, A2)-1)
how do you use a formula to split just a first and last name?
just the last name
- Start the same way from the space character, but you need to know the character after it. So it’s the total number of characters - the space numbers character number. Len(A2)-Search(“ “, A2)
- To get the Last name you are telling excel that what you want is to the right of the space character, so you are adding Right(A2, to the equation.
=Right(A2, Len(A2)-Search(“ “, A2))
how do you use a formula to split just a first middle and last name?
just the first name
- find the character number of the space character
- we’re looking to extract everything to the left of it for the first name
- find space character =search(“ “, A2)
- find the number of characters you need to extract for the first name, add a -1 to the equation =search(“ “, A2)-1
- pull the characters needed from the left of the space so add the function LEFT(A2) to the equation =LEFT(A2, SEARCH(“ “, A2)-1)