Display a Calculated Field

690
4
Jump to solution
09-22-2017 12:40 PM
RonKnepper
Occasional Contributor II

This is driving me nuts and from what I read you can do it.  I have a calc field (it does store the correct data) and when I use it in a note so the collector can see the amount it will not display?  What am I missing?

calculateEst_Boxes
noteDisplayVerify the Number of Boxes: ${Est_Boxes}
0 Kudos
1 Solution

Accepted Solutions
JamesTedrick
Esri Esteemed Contributor

Hi Ron,

The "Verify the Number of Boxes: ${Est_Boxes}" text - is that in the label column or the calculation column?  Survey123 don't support variable substitution in the label column.  This can be done in the calculation column, but it needs to be a true function:

concat("Verify the Number of Boxes: ", ${Est_Boxes})

should work

View solution in original post

4 Replies
by Anonymous User
Not applicable

Hi Ron,

I think you may want to include the portion "Verify the Number of Boxes:" in a hint or a required message perhaps. I believe that the calculation field is strictly to perform calculations using values.

Hope that helps

Jess

0 Kudos
RonKnepper
Occasional Contributor II

Nope even if I only have that variable it does not display

0 Kudos
JamesTedrick
Esri Esteemed Contributor

Hi Ron,

The "Verify the Number of Boxes: ${Est_Boxes}" text - is that in the label column or the calculation column?  Survey123 don't support variable substitution in the label column.  This can be done in the calculation column, but it needs to be a true function:

concat("Verify the Number of Boxes: ", ${Est_Boxes})

should work

RonKnepper
Occasional Contributor II

Thanks, my understanding of how to use it was off.  I have it working fine now.

0 Kudos