Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 63 Insurance
- 536.4K On-Premises Infrastructure
- 138.3K Analytics Software
- 38.6K Application Development Software
- 5.8K Cloud Platform
- 109.5K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.3K Integration
- 41.6K Security Software
Query to check for spaces at end of property value

User_IUC8R
Member Posts: 67 Red Ribbon
Does anyone have any tips on how to check for a space at the end of a property value? I can't find anything in the query operators that looks for "Ends with" any help is appreciated!
Tagged:
Answers
-
Hi,
There is a work around for this , this can be achieved by creating the validation. Please use the below query to achieve the validation
equals(string,RTrim(PropValue(prop defn)),PropValue(prop defn))
this will compare the trimmed prop value with propvalue (with space value) this will throw up the error.
Hope this helps you.
Thanks,
RK
-
Thank you!