以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  关于表达式的请教  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=15987)

--  作者:123456
--  发布时间:2012/1/28 9:33:00
--  关于表达式的请教
同一个表内,A字段为日期型数据,B字段为表达式型字段。假设A的日期为yyyy-mm-dd,要求B字段的内容自动变为yyyymmdd001,若同一天的记录有多条,则自动为YYYYMMDD002\\003……?
--  作者:don
--  发布时间:2012/1/28 12:57:00
--  
强行用表达式是自寻烦恼,还是用代码吧:

If e.DataCol.Name = "日期" Then
    If e.DataRow.IsNull("日期") Then
        e.DataRow("编号") = Nothing
    Else
        Dim bh As String =  Format(e.DataRow("日期"),"yyyyMMdd") 
        If e.DataRow("编号").StartsWith(bh) = False 
            Dim max As String
            Dim idx As Integer
            max = e.DataTable.Compute("Max(编号)","日期 = #" & e.DataRow("日期") & "#") 
            If max > "" Then \'如果存在最大编号
                idx = CInt(max.Substring(8,3)) + 1 
            Else
                idx = 1 
            End If
            e.DataRow("编号") = bh & Format(idx,"000")
        End If
    End If
End If