excel commonly used functions

Data management 0.7
Data Analysis 0.3

Why learn excel

Python will not because you will become a data analyst, but can be any tool to solve the problem.

  1. Agile, quick, immediate need to respond to the needs of
  2. excel function "sql function" python function
  3. Ensure that the new version of "develop good habits data tables" initiative for "more practice

Common Functions

Function is intermediate processing, input and output parameter of the switching function

  1. Text cleaning function

     字符串概念
     英文+数字+符号:ASCII
     中文:GB2313;含繁体字:GB18030
     万国码:unicode 》utf-8(一种规则)
     1. FIND(“查找字符”,查找单元格,查找起始位点)=返回内容存在的位置
     2. LEFT(待提取的单元格,提取的终止位置(起始位置默认为1)) = 返回提取到的字符
     3. RIGHT(待提取的单元格,提取的终止位置(起始位置默认为-1)) = 返回提取到的字符)
     4. MID(待提取的单元格,提取的起始位置,提取的长度) = 返回提取到的字符)
     5. CONCATENATE(字符1,字符2) = 多字符拼接函数
     6. REPLACE(t替换的单元格,从哪里替换,替换几个,替换的内容)
     7. SUBSTITUTE(替换的单元格,被替换的内容,替换内容)
     8. TRIM(单元格) 	删除两边的空格
     9. LEN(单元格) 	计算单元格的长度
    
  2. Correlation matching function

     1. VLOOKUP(查找值,查找区域,返回值,匹配模式) 
     2. INDEX(索引的区域,索引行,索引列) 			数组的概念,与python的列表差不多
     3. MATCH(查找值,查找区域,匹配模式)  返回索引位置值,重复只返回第一个
     4. ROW(index)  返回所在行
     5. OFFSET()  偏移函数
     6. HYPELINK() 超链接函数
    
  3. Logical operation function

     = 单元格 = ‘特定内容" 返回True or False
     if (单元格> 10,为真的结果,为假的结果)  可以嵌套
     ISERROR() 	报错为	True
     ISNUMBER()  数字为 True
    
  4. Calculate statistical functions

     1. SUMPRODUCT(相加的一列,相乘的一列)  累加相乘
     2. COUNT(区域)   计数且不计算为空的
     3. MAX() 最大值
     4. MIN() 最小值
     5. RANDBETWEEN(起始,结束)   随机生成数字
     6. AVERAGE()  平均数
     7. QUARTILE() 分位数
     8. STDEV() 标准差,配合平均函数,查看数值波动
     9. SUBTITAL() 可以完成统计平均值求和 均值,函数中的瑞士军刀
     10. INT() 向下取整
     11. ROUND()  四舍五入,第二个参数可以改变四舍五入的位置 
     12. COUNTIF()  统计符合条件的数量
     13. SUMIF() 条件求和
     14. AVERAGEIF() 条件求平均
    
  5. Time series function - the nature of time is a digital
    1. YEAR ()
    2. MONTH ()
    3. DAY ()
    4. the WEEK ()
    5. The WEEKDAY () day of week
    6. NOW () Returns the current time, precise sec to
    7. TODAY () calculates the date
    8. dAYS () calculates the number of days
    9. dATE (year, month, day) reduction of reverse

Released five original articles · won praise 0 · Views 162

Guess you like

Origin blog.csdn.net/weixin_41655783/article/details/104468596