Hi,
I am trying to create a self correcting table with a sum. On this screen I would like a checkmark at (1,5) to appear if the sum of (1, 1), (1, 2), (1, 3), (1,4) equals 32214. How can I edit the CL to reflect this?
Hi,
I am trying to create a self correcting table with a sum. On this screen I would like a checkmark at (1,5) to appear if the sum of (1, 1), (1, 2), (1, 3), (1,4) equals 32214. How can I edit the CL to reflect this?
Use:
CL for Table
cellContent(1,5):
when numericValue("{this.cellNumericValue(1,2)}+{this.cellNumericValue(1,3)}+${this.cellNumericValue(1,4)}") = 500 " Correct
" otherwise “
”
Thanks for replying! I tried the CL and it didn’t work.
@Nick_Rhodes I believe this is what he intended. @Satvinder_Singh When you’re trying to display multiple lines of CL code use triple backticks ``` in the lines before and after the code. It creates the code textbox.
cellContent(1,5):
when numericValue("${this.cellNumericValue(1,2)}+
${this.cellNumericValue(1,2)}+ ${this.cellNumericValue(1,3)}+
${this.cellNumericValue(1,4)}") = 500 "✅Correct✅" otherwise “❌”
Thanks for your help! All is good!
Thank You @Daniel_Grubbs. I will take care of that.