
the sharepoint columns are
username, document, date
(document is a text string)
I am able to connect to the datasource (sharepoint) add and delete records, and do lookups (but not for a "and" condition on a specific record).
I just need a script that checks all the sharepoint list for a record that contains BOTH a specified user AND specified document (the date does not need to be checked). The script should return true/false.
@Anonymous
Consider the following:
LookUp(yourList, userName = someUserName && document = someDocument, true)
This will return true if the record exists, false if not.
I hope this is helpful for you.