I am building a search form to look for rental properties that meet the criteria.
This query works because RENT is a numeric field: http://www.coolrenthouses.com/members/osu9400/crh.nsf/(search)/?SearchView&Query=([rent]<=1500)
However, this one SHOULD work, but it does not. I receive the error that Relational operators are not supported in text fields. BEDROOMS is NOT a text field – it is numeric! Why am I getting this error?
http://www.coolrenthouses.com/members/osu9400/crh.nsf/(search)/?SearchView&Query=([bedrooms]>=1)
I checked the document properties via the Notes client and BEDROOMS is a numeric field and contains a value. In reality, BEDROOMS is a computed numeric field with the formula @TextToNumber(bedrooms_edit) – I have even tried switching it to an editable numeric field with the same formula, but the results were the same.
bedrooms_edit is used for input only and is hidden in read mode. Likewise, bedroooms is hidden in edit mode.
Feel free to check out the input form using these credentials:
user: “romeo the dog”
pass: “passpass”
http://www.coolrenthouses.com/members/osu9400/crh.nsf/property?OpenForm&Login
So why do I receive this error?
Thanks!