以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  日期类的表达式列  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=58949)

--  作者:newsun2k
--  发布时间:2014/10/27 10:57:00
--  日期类的表达式列
A列,日期型
B列,表达式  (A列 + 2个月)?
这个B列如何实现?

--  作者:Bin
--  发布时间:2014/10/27 10:58:00
--  
代码才能这样操作.
--  作者:有点甜
--  发布时间:2014/10/27 10:59:00
--  

 这种建议不要用表达式来做。

 

 直接用代码吧,写到datacolchanged事件

 

 If e.DataCol.Name = "A列" Then
    If e.newValue = Nothing Then
        e.DataRow("B列") = Nothing
    Else
        e.DataRow("B列") = e.NewValue.AddMonths(2)
    End If
End If