Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共3 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:法律有效性计算

1楼
timber83 发表于:2025/1/17 14:19:00
举例:
表A
法律名称          发布日期          实施日期          废止日期         时效
食品法      2021-01-05     2022-01-05       2023-01-05        废止

需要实现,时效列自动计算,
计算规则,
【法律名称】列为空时, 【时效】列为空,
【法律名称】列非空时,【废止日期】列为空,【实施日期】列大于当前日期, 时效为“即将生效”
                                                             【实施日期】列小于等于当前日期,时效为“生效”
                                【废止日期】列非空,【废止日期】列小于等于当前日期,时效为“失效”
                                                              【废止日期】列大于当前日期,时效为“生效”
2楼
有点蓝 发表于:2025/1/17 14:44:00
http://www.foxtable.com/webhelp/topics/0625.htm

Select Case e.DataCol.Name
    Case "法律名称", "实施日期", "废止日期"
        If e.DataRow.isnull("法律名称") Then
            e.DataRow("时效") = Nothing
        Else
            If e.DataRow.isnull("废止日期") Then
                If e.DataRow("实施日期") > Date.today Then
                    e.DataRow("时效") = "即将生效"
                Else
                    e.DataRow("时效") = "生效" 
                End If 
            Else
……剩下自己参考做
            End If
        End If
End Select
3楼
timber83 发表于:2025/1/17 15:11:00
以下是引用有点蓝在2025/1/17 14:44:00的发言:
http://www.foxtable.com/webhelp/topics/0625.htm

Select Case e.DataCol.Name
    Case "法律名称", "实施日期", "废止日期"
        If e.DataRow.isnull("法律名称") Then
            e.DataRow("时效") = Nothing
        Else
            If e.DataRow.isnull("废止日期") Then
                If e.DataRow("实施日期") > Date.today Then
                    e.DataRow("时效") = "即将生效"
                Else
                    e.DataRow("时效") = "生效" 
                End If 
            Else
……剩下自己参考做
            End If
        End If
End Select

感谢

共3 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .01563 s, 2 queries.