Tag: Software

Common Used Excel Formulas

一、数字处理 1、取绝对值 =ABS(数字) 2、取整 =INT(数字) 3、四舍五入 =ROUND(数字,小数位数) 二、判断公式 1、把公式产生的错误值显示为空 公式:C2 =IFERROR(A2/B2,””) 说明:如果是错误值则显示为空,否则正常显示。

Python Tips and Tricks

1.  Install Python into Windows 1.1 Download Latest Python 2 file from https://www.python.org/downloads/windows/ Latest Python 3 Release – Python 3.7.0 Latest Python 2 Release – Python 2.7.15 1.2 Double Click download…