Chapter2 LimpiarDatos
Chapter2 LimpiarDatos
D ATA A N A LY S I S I N E X C E L
Jen Bricker
Head of Career Services, DataCamp
Data analysis process review
=CONCATENATE(value1, [value2],...)
Example:
=CONCATENATE(A2,B2)
=CONCATENATE(A2," - ",B2)
=LOWER(text1)
Syntax:
=UPPER(text1)
Syntax:
=PROPER(text1)
Jen Bricker
Head of Career Services, DataCamp
What is a string?
=LEN(text)
Example:
or
=LEN(B2)
=LEFT(text,number_of_characters)
Example:
=LEFT(B2,LEN("3D My Kicks"))
=LEN(",'type'")
result: 7
=LEFT(M2,LEN(M2)-7)
=RIGHT(text,number_of_characters)
Example:
=SUBSTITUTE(B2,":","-")
Jen Bricker
Head of Career Services, DataCamp
Interpreting date analysis requests
Look at the project data by date
=deadline-launched_at
Example:
=E2-D2
=NOW()
=TODAY()
Example:
=NOW()-E2
=TODAY()-E2
=MONTH(date)
Example:
=MONTH(E2)
=WEEKDAY(date,[return_type])
return_type options
Example:
=WEEKDAY(E2,2)
Jen Bricker
Head of Career Services, DataCamp
VLOOKUP() introduction
col_num : the column number in the range containing the value to return
Example:
=VLOOKUP(F2,'Date Tables'!D:E,2,FALSE)
=VLOOKUP(MONTH(E2),'Date Tables'!D:E,2,FALSE)