I have this SQL in a calculated field; I want to return a value for this field from a cascading field if a certain question is answered yes in a checked field.
IsNull(CASE
WHEN [@cbParamVirtual18] = 'Yes' THEN [@field:ValueMargin]
ELSE 0
END,0)
Anyone know what could be the reason I am getting calculation error or a blank field?
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.
Question
IoTWorld
Hi everyone please help;
I have this SQL in a calculated field; I want to return a value for this field from a cascading field if a certain question is answered yes in a checked field.
IsNull(CASE
WHEN [@cbParamVirtual18] = 'Yes' THEN [@field:ValueMargin]
ELSE 0
END,0)
Anyone know what could be the reason I am getting calculation error or a blank field?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
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.