以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  数字转换为人民币大写的问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=174552)

--  作者:liquanli1
--  发布时间:2022/1/20 15:06:00
--  数字转换为人民币大写的问题
咨询一下那位专家 ,怎么将A列的   200008.56,在B列转换为贰拾万零捌元伍角。用什么样子的表达式可以实现?本人纯粹小白,只会粘贴,请大神将表达式写出来,我直接用一下,谢谢

[此贴子已经被作者于2022/1/20 15:40:39编辑过]

--  作者:cd_tdh
--  发布时间:2022/1/20 15:16:00
--  
http://www.foxtable.com/webhelp/topics/0316.htm
--  作者:有点酸
--  发布时间:2022/1/20 15:16:00
--  
dataColChanged事件:

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