I'm trying to write a lookup function to evaluate whether there are rows in my Sharepoint list that satisfy both conditions. When I write the function below, it returns the entries that satisfy either one of the conditions but not both:
LookUp('Log', (userID in 'Log'.Title && Text(Subtitle3_1) in 'Log'.ChallengeID),true)The function above, which I in return use in a formula for Visible, returns true for entries where the user matches or the ChallengeID matches.
Is there a way for me to write a function to achieve my goal?