金币
UID423768
帖子
主题
积分1018
注册时间2019-2-11
最后登录1970-1-1
听众
性别保密
|
楼主 |
发表于 2019-3-3 15:50:58
|
显示全部楼层
0位小数:=if((A2-0.5)/int(A2)=1,int(A2)+mod(int(A2),2),round(A2,0))
1位小数:=if((A2*10-0.5)/int(A2*10)=1,int(A2*10)+mod(int(A2*10),2),round(A2*10,0))/10
2位小数:=if((A2*100-0.5)/int(A2*100)=1,int(A2*100)+mod(int(A2*100),2),round(A2*100,0))/100
3位小数:=if((A2*1000-0.5)/int(A2*1000)=1,int(A2*1000)+mod(int(A2*1000),2),round(A2*1000,0))/1000
4位小数:=if((A2*10000-0.5)/int(A2*10000)=1,int(A2*10000)+mod(int(A2*10000),2),round(A2*10000,0))/10000
A2为需要处理的数据
这回应该没问题了,等测试完了再补充吧 |
|