使用round函数对数值取整,然后再使用split对结果进行切分,最后显示的结果为什么会多一个.0? 怎么把.0去除?
不用round
直接
split(format(A1,"0"),"")
=replace(split(round(A1,0),""),".0","")