在Running Total Fields
中,如何设置包含空白值的Distinct Count
作为您的条件之一?
答案 0 :(得分:1)
刚刚找到解决方案。它是:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<form id="myform" action="" method="get" style="">
<input type="hidden" name="state" value="{{csrf_token()}}" />
</form>
<form method="post" action="" class="form-horizontal" id="form_profile_update" name="form_profile_update">
<button type="submit" id="mysubmit" class="todo-link btn btn-default emphasis" style="border:none;background-color: #0079BB;color:white;text-transform: uppercase;padding: 15px 20px;margin: 0 auto;display: block;">
Connect </button>
</form>
在询问之前,这就是我尝试过的,但它没有用。因此对于像我这样尝试过的人并且它不起作用,那是因为你的isnull({table.column})
中有多个条件,无论出于何种原因,只有当你编辑语法并将其置于条件顶端时才有效而不是底部。不知道原因,但它现在正在运作。
答案 1 :(得分:0)
我建议用新的公式替换你目前总计的字段。有些东西不会出现空白,例如:
If ISNULL {yourfieldhere} THEN "Blank" ELSE {yourfieldhere}
或者如果它是一个空字符串:
If {yourfieldhere}="" THEN "Blank" ELSE {yourfieldhere}
您可以将"Blank"
替换为适合您的任何内容,即使只是空" "
个空格或0
。但是,至少有一些不同的东西要计算在内。