ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 845|回复: 7

[求助] 请老师帮我看看,我这个代码有4句执行时,无法正确判断的问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-8-11 18:01 | 显示全部楼层 |阅读模式
本帖最后由 7016427 于 2018-8-11 20:16 编辑

Private Sub CommandButton1_Click()
' 请老师,帮我看看,以下黄色4句无法正确判断,也没有错误提示的问题
Dim wt As Workbook, d As String, s As String
d = "少退票费收据:"
s = "多退票费收据:"
With ThisWorkbook.Sheets("财收22")
.Unprotect Sheet6.[aa1]
.Range("w81").Value = TextBox5.Value
.Range("w82").Value = TextBox6.Value
.Range("w83").Value = TextBox7.Value
.Range("w84").Value = TextBox8.Value
.[x81].Formula = "=IF(w81>0,(w81-t81+1)*0.5,"""")"
.[x82].Formula = "=IF(w82>0,(w82-t82+1)*1,"""")"
.[x83].Formula = "=IF(w83>0,(w83-t83+1)*5,"""")"
.[x84].Formula = "=IF(w84>0,(w84-t84+1)*10,"""")"
.[x85].Formula = "=sum(r[-1]c:r[-4]c)"
If Val(TextBox5.Value) < .[w81].Value Then MsgBox "退票费伍角的止号,不能小于上次该票据使用  " & Chr(10) & Chr(10) & "的止号,按确定时自动调到上次止号!", 64, " 提 示": TextBox5.Value = .[w81].Value: Exit Sub
If Val(TextBox6.Value) < .[w82].Value Then MsgBox "退票费壹元的止号,不能小于上次该票据使用  " & Chr(10) & Chr(10) & "的止号,按确定时自动调到上次止号!", 64, " 提 示": TextBox6.Value = .[w82].Value: Exit Sub
If Val(TextBox7.Value) < .[w83].Value Then MsgBox "退票费伍元的止号,不能小于上次该票据使用  " & Chr(10) & Chr(10) & "的止号,按确定时自动调到上次止号!", 64, " 提 示": TextBox7.Value = .[w83].Value: Exit Sub
If Val(TextBox8.Value) < .[w84].Value Then MsgBox "退票费拾元的止号,不能小于上次该票据使用  " & Chr(10) & Chr(10) & "的止号,按确定时自动调到上次止号!", 64, " 提 示": TextBox8.Value = .[w84].Value: Exit Sub
If (.[ad26].Value + .[ag23].Value) - .[x85].Value > 0 Then MsgBox d & Format((.[ad26].Value + .[ag23].Value) - .[x85].Value, "0.00;0.00 "), 16, " 警 告!": Exit Sub
If (.[ad26].Value + .[ag23].Value) - .[x85].Value < 0 Then MsgBox s & Format((.[ad26].Value + .[ag23].Value) - .[x85].Value, "0.00;0.00 "), 16, " 警 告!": Exit Sub
End With
Unload Me
End Sub

求助.zip

38.49 KB, 下载次数: 1

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-11 19:32 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
请各位老师帮我看看,附件

求助.zip

38.49 KB, 下载次数: 1

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-12 08:02 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
谁能帮我解决这个难题?

TA的精华主题

TA的得分主题

发表于 2018-8-12 08:18 | 显示全部楼层
Val(TextBox5.Value) < .[w81].Value   '两边都是相等的,条件当然不成立。右边是否为x81?

TA的精华主题

TA的得分主题

发表于 2018-8-12 08:45 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
楼主不会F8单步调试代码?

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-12 16:31 | 显示全部楼层
huang1314wei 发表于 2018-8-12 08:45
楼主不会F8单步调试代码?

我按F8测试没有错误提示!

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-12 16:41 | 显示全部楼层
一把小刀闯天下 发表于 2018-8-12 08:18
Val(TextBox5.Value) < .[w81].Value   '两边都是相等的,条件当然不成立。右边是否为x81?

老师好!w81是上次的止号,x81是金额,TextBox5是输入当天的止号,如果输入当天的止号小于上次止号w81时,就默认上次的止号,否则,输入TextBox5就作为当日止号,修改上次的止号w81。

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-12 17:09 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
7016427 发表于 2018-8-12 16:41
老师好!w81是上次的止号,x81是金额,TextBox5是输入当天的止号,如果输入当天的止号小于上次止号w81时 ...

Private Sub CommandButton1_Click()
' 现在还有点小问题,就是当其中一个错误时,终止执行下面的语句,请问老师怎么改?
Dim wt As Workbook, d As String, s As String
d = "少退票费收据:"
s = "多退票费收据:"
With ThisWorkbook.Sheets("财收22")
If Val(TextBox5.Value) < .[w81].Value Then MsgBox "退票费伍角的止号,不能小于上次该票据使用  " & Chr(10) & Chr(10) & "的止号,按确定时自动调到上次止号!", 64, " 提 示": TextBox5.Value = .[w81].Value: Exit Sub
If Val(TextBox6.Value) < .[w82].Value Then MsgBox "退票费壹元的止号,不能小于上次该票据使用  " & Chr(10) & Chr(10) & "的止号,按确定时自动调到上次止号!", 64, " 提 示": TextBox6.Value = .[w82].Value: Exit Sub
If Val(TextBox7.Value) < .[w83].Value Then MsgBox "退票费伍元的止号,不能小于上次该票据使用  " & Chr(10) & Chr(10) & "的止号,按确定时自动调到上次止号!", 64, " 提 示": TextBox7.Value = .[w83].Value: Exit Sub
If Val(TextBox8.Value) < .[w84].Value Then MsgBox "退票费拾元的止号,不能小于上次该票据使用  " & Chr(10) & Chr(10) & "的止号,按确定时自动调到上次止号!", 64, " 提 示": TextBox8.Value = .[w84].Value: Exit Sub
.Range("w81").Value = TextBox5.Value
.Range("w82").Value = TextBox6.Value
.Range("w83").Value = TextBox7.Value
.Range("w84").Value = TextBox8.Value
.[x81].Formula = "=IF(w81>0,(w81-t81+1)*0.5,"""")"
.[x82].Formula = "=IF(w82>0,(w82-t82+1)*1,"""")"
.[x83].Formula = "=IF(w83>0,(w83-t83+1)*5,"""")"
.[x84].Formula = "=IF(w84>0,(w84-t84+1)*10,"""")"
.[x85].Formula = "=sum(r[-1]c:r[-4]c)"

If (.[ad26].Value + .[ag23].Value) - .[x85].Value > 0 Then MsgBox d & Format((.[ad26].Value + .[ag23].Value) - .[x85].Value, "0.00;0.00 "), 16, " 警 告!": Exit Sub
If (.[ad26].Value + .[ag23].Value) - .[x85].Value < 0 Then MsgBox s & Format((.[ad26].Value + .[ag23].Value) - .[x85].Value, "0.00;0.00 "), 16, " 警 告!": Exit Sub
End With
Unload Me
End Sub


您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-11 22:38 , Processed in 0.026348 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表