Hello!
I have a series of calculations that work in connect and the field app, but not in the web app. Here is part of the series:
if(selected(${Number_Employees}, '0-5'),5,0) or
if(selected(${Number_Employees}, '6-10'),5,0) or
if(selected(${Number_Employees}, '201+'),5,0) or
if(selected(${Number_Employees}, '11-50'),0,0) or
if(selected(${Number_Employees}, '51-200'),0,0)
From doing some digging, I think the issue may be that I'm using the "or" operator, which returns a boolean value. Am I correct on that? If so, do I need to figure out how to nest the above calculation such that there is no "or"? Thank you in advance!