以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 如何将A列的小写数字在B列转换为中文大写数字~ (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=1429) |
-- 作者:hs0309 -- 发布时间:2008/12/18 9:27:00 -- 如何将A列的小写数字在B列转换为中文大写数字~ 我在表达式的公式里面设置CUMoney([A])提示错误~ 另外,能在以后的版本中把错误提示变成中文的么? 我是学习俄语的,看这个英文提示太费尽了~ |
-- 作者:狐狸爸爸 -- 发布时间:2008/12/18 9:36:00 -- 表达式不能使用CUMoney函数的。 e.DataRow("B") = Nothing Else e.DataRow("B") = CUMoney(e.DataRow("A")) |
-- 作者:hs0309 -- 发布时间:2008/12/18 9:39:00 -- 谢谢 看来我的易表后遗症还很多呀 |
-- 作者:smileboy -- 发布时间:2008/12/18 9:41:00 -- datachanged事件: If e.IsFocusCell Then If e.DataCol.Name = "A列" Then If e.DataRow.IsNull("A列") Then e.DataRow("B列") = Nothing Else e.DataRow("B列") = CUMoney(e.DataRow("A列")) End If End If End If |