Using SalesForce as my data source and I need to perform a CONTAINS function, however, SalesForce SOQL doesnโt recognize a CONTAINS function, only LIKE, which AppSheet doesnโt recognize.
Anyone encounter this problem or have a work around?
Well, I figured it out. You have to use the EXTRACTEMAILS function:
CONTAINS(EXTRACTEMAILS([AppSheet__c]), USEREMAIL())
Better:
IN(USEREMAIL(), EXTRACTEMAILS([AppSheet__c]))
See also:
User | Count |
---|---|
16 | |
13 | |
8 | |
7 | |
4 |