MS Access中的IIf错误

时间:2016-05-27 07:51:58

标签: ms-access

我在MS Access中有2列。并非所有行都已填充。 我想要实现的是:

  • 如果A列中的值大于B列,那么我想要" 1"在 C栏。

  • 如果A列中的值小于B列中的值,则I 想" 0"在C栏中。

  • 如果A栏中没有值,那么我想要" - "在C栏中。

我一直在尝试一切,但似乎无法弄明白。 这就是我一直在尝试的:

IIf([W3]>[L3];"1";IIf(IsEmpty([W3]);"0";"-"))

1 个答案:

答案 0 :(得分:2)

试试这个:

Dropzone.autoDiscover = false; // Disabling autoDiscover, otherwise Dropzone will try to attach twice.

$(function() {      
    var myDropzone = new Dropzone("#my-dropzone");
    myDropzone.on("addedfile", function(file) {
        /* Maybe display some more file information on your page */
    });
});

或:

=IIf(IsNull([W3];"-";IIf([W3]>[L3];"1";"0"))