Jump to content

aschild

Members
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

aschild's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi Andrii, thanks for your response. What is an example of the [@field:Num_test] field in the IsNull([@field:Num_test],0)=0 situation?
  2. I am trying to set up a formula field (field name: Delta) with the logic I've listed below. So far I have been doing the formula in excel and want to move it to a Caspio field called Delta. The excel formula is: =IF(AND(G2="",G2<>DATEVALUE("9/9/9999"),F2="No",H2<>""),DAYS(H2,I2),IF(AND(G2<>"",G2<>DATEVALUE("9/9/9999"),F2="No"), DAYS(G2,I2),IF(AND(G2=DATEVALUE("9/9/9999"),F2="No"), DAYS(E2,I2),IF(AND(G2<>"",G2<>DATEVALUE("9/9/9999"),G2<E2,F2="Yes"), DAYS(G2,I2),IF(AND(G2>E2,F2="Yes"), DAYS(E2,I2),IF(AND(H2=""), "NA","TBD")))))) The fields referenced in the formula are:Actual Test Bank Install (date/time datatype)Estimated Test Bank Install (date/time datatype)Contract Test Bank Install (date/time datatype)RTS Actual (date/time datatype)Released to Sales (formula datatype that contains either Yes, No or NA as the value) The written out logic for Caspio is: -----------------------------------------------------------------------------If [@field:Actual Test Bank Install] is null and [@field:Actual Test Bank Install] is not “09/09/9999” and [@field:Released to Sales] = ‘No’ and [@field:Estimated Test Bank Install] is not blankThen calculate the number of calendar days between [@field:Estimated Test Bank Install] and [@field:Contract Test Bank Install]If [@field:Actual Test Bank Install] is not blank and [@field:Actual Test Bank Install] is not “09/09/9999” and [@field:Released to Sales] = ‘No’Then calculate the number of calendar days between [@field:Actual Test Bank Install] and [@field:Contract Test Bank Install]If [@field:Actual Test Bank Install] is “09/09/9999” and [@field:Released to Sales] = ‘No’Then calculate the number of calendar days between [@field:RTS Actual] and [@field:Contract Test Bank Install]If [@field:Actual Test Bank Install] is not blank and [@field:Actual Test Bank Install] is not “09/09/9999” and [@field:Actual Test Bank Install] is less than (or before) [@field:RTS Actual] and [@field:Released to Sales]= ‘Yes’Then calculate the number of calendar days between [@field:Actual Test Bank Install] and [@field:Contract Test Bank Install]If [@field:Actual Test Bank Install] is greater than (or after) [@field:RTS Actual] and [@field:Released to Sales]= ‘Yes’Then calculate the number of calendar days between [@field:RTS Actual]and [@field:Contract Test Bank Install]If [@field:Estimated Test Bank Install] is blankThen ‘NA’Else ‘TBD’----------------------------------------------------------------------------- The formula for the Released to Sales field is:CASE WHEN convert(nvarchar(10), [@field:RTS_Actual], 101) = '09/09/9999' THEN 'NA' WHEN convert(nvarchar(10), [@field:RTS_Actual], 101) != '09/09/9999' AND [@field:RTS_Actual] is not null THEN 'Yes' ELSE 'No' END ----------------------------------------------------------------------------- Can someone help with what the Caspio case statement would be for my field? Thanks in advance! Anna
  3. It's a confidential datapage that requires login, etc... is there a different way to troubleshoot?
  4. Hello IMDora, I input the code in an HTML Block but when I typed something in the text box, my multi-select list box didn't filter accordingly. Am I missing something there? Thank you
  5. I have a multi-select listbox in a submission form that has 30+ values. I would like to implement a search bar just above the listbox so users can filter the list. The user should be able to search the list, select a value, then search for another value and select it (etc) before submitting the form. When the form is submitted, all selected values register with the submission.
×
×
  • Create New...