Survey123 | Inbox | Where code help needed

271
2
12-06-2021 09:37 AM
CarissaPhantom
New Contributor III

What I have

AssignedInspector3 = ${username} OR highRISK='Contractor BMP Required'

 

Backstory: I have two different sub-contractors that each work in their own way.

Sub-contractor 1 - assigns an inspector to a point ---AssignedInspector = ${username}

Sub-contractor 2 - let's the inspector choose which site are closest to them --- highRISK='Contractor BMP Required'

I'd like to get the Sub-contractor 2 data to only populate the inbox if they belong to a specific company. Is there a way?

 

0 Kudos
2 Replies
ZacharySutherby
Esri Regular Contributor

Hello @CarissaPhantom

You'll likely need to use the concat() function to append quotes around the ${username} question. What I would suggest is

concat("AssignedInspector3 = '", ${username}, "' OR highRISK='Contractor BMP Required')

or even

AssignedInspector3 = concat("'",${username},"'") OR highRISK='Contractor BMP Required'

should work

Thank you,
Zach
0 Kudos
CarissaPhantom
New Contributor III
0 Kudos