Foxtable(狐表)用户栏目专家坐堂 → 多条件判断


  共有2067人关注过本帖树形打印复制链接

主题:多条件判断

帅哥哟,离线,有人找我吗?
有点甜
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/3/2 12:34:00 [显示全部帖子]

If e.datarow("线长审核") = Nothing AndAlso e.datarow("质量确认") = nothing then

 

ElseIf e.datarow("线长审核") <> Nothing AndAlso e.datarow("质量确认") = nothing then

 

ElseIf e.datarow("线长审核") <> Nothing AndAlso e.datarow("质量确认") <> nothing then

    If e.datarow("不良转出") = Nothing orelse e.datarow("报废品") = nothing then

 

    Else

 

    End If

End If


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/3/2 17:23:00 [显示全部帖子]

建议你重新学习一下foxtable语句基础,再继续制作软件,上面的都是基础语法。

 

If e.DataRow("线长确认") = Nothing AndAlso e.DataRow("质量确认") = Nothing Then
    e.DataRow("处理节点") = "线长审核"
ElseIf e.DataRow("线长确认") <> Nothing AndAlso e.DataRow("质量确认") = Nothing Then
    e.DataRow("处理节点") = "质量处理"
ElseIf e.DataRow("线长确认") <> Nothing AndAlso e.DataRow("质量确认") <> Nothing Then
    If e.DataRow("实际结果_不良转出") = Nothing OrElse e.DataRow("实际结果_待报废品") = Nothing Then
        e.DataRow("处理节点") = "进行中"
    Else
        e.DataRow("处理节点") = "已完成"
    End If
End If


 回到顶部