Capitalise the alphabet
kevin cookie company
=proper (col_name)
Kevin Cookie CompanyTrim
Kevin Cookie Company
=trim(col_name)
Kevin Cookie CompanyConcat
=concat(A10, " ", B10)
Kevin Cookie Vs KevinCookieText Join
=textjoin(" ", TRUE, A18:C18), format: delimiter,ignore empty col? Yes, Col range)Extract Company Address
123 Main Street, 05486
=right(A22, 5)
result:05486Extract word before "@" ,精准extract“@” 之前的字
[email protected]
left(A28, find("@", A28)-1)
result: kevin
[email protected]
result: sue
7.Nested if
=IF(M30=P30,N30,IF(M31=P30,N31,"unknown"))
OR xlookup function (more easier and straight forward)