1. 文本截取函数
1.left(文本范围,截取范围),right(文本范围,截取范围),min(文本范围,开始截取位置,结束截取位置)
round(number,四舍五入到小数点几位) roundup-向上进位 rounddown-向下舍去(可用于取整)
int直接取整 mod取余 ROW行号 column列号
2.返回
INDEX(array,row_num,[column_num])
MATCH(lookup_value,lookup_array,[match_type])
VLOOKUP(lookup_value,table_array,col_index_num,[range_lookup])
MID 返回字符个数的表达式:MID(Text, Start_Num, Num_Chars)
中文表达示:MID(文本, 起始位置, 提取字符长度)
返回字节个数的表达式:MIDB(Text, Start_Num, Num_Bytes)
中文表达示:MIDB(文本, 起始位置, 提取字节长度)
3.逻辑判断
IF(logical_test,[value_if_true],[value_if_false])
AND(logical1, [logical2], ...)
OR(logical1,logical2, ...),