Jump to content
  • 0

Blank value result


Kuroshi

Question

4 answers to this question

Recommended Posts

  • 0

Hi @Batchini

 

Can you try this formula instead:

IsNull([@field:Field1], 0) + IsNull([@field:Field1], 0)

I just added IsNull function. What it does is it replaces NULL with the specified replacement value, otherwise returns the result of expression.

You may refer to this article as well. https://howto.caspio.com/function-reference/

- Barbie

 

Link to comment
Share on other sites

  • 0

Also  if you want to know the type of value  you enter, you can use javascript.

 

Paste this in the footer (add header / footer if you don't have one) and make sure you disable the HTML editor in the advanced TAB but replace X with the number of your virtual field

When you then enter a value and click TAB for example it will popup and tell you the Type of this value

 

<script>

document.getElementById("cbParamVirtualx").onchange = function() {getType("cbParamVirtualx")};

function getType(field){
alert(typeof field);
}

</script>

 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...