Hi @BigE ,
Based on the LookUp formula that you mentioned, I think there is something logic issue with it. The LookUp function finds the first record in a table that satisfies a formula.
So based on the LookUp formula you mentioned, it would search first record whose SubmissionID column value = varSubmissionID. If there are three records existed in your SP List with same SubmissionID value:
|SubmissionID | Category | ID |
| ---------- | ---------|----|
| 1001 | Poster | 1 |
| 1001 | Products | 2 |
| 1001 | Photo | 3 |
The LookUp function that you mentioned could only retrieve the first record in above table, because, you have specified the varSubmissionID =SubmissionID as filter condition. No matter how many records with same SubmissionID value in your SP List, it could only retrieve the first record with Category = "Poster", so your LookUp formula result would always return false.
As an fixed solution, please consider modify your formula as below (set Text property of a Label to following😞
If(
IsBlank(LookUp('SP Library', varSubmissionID=SubmissionID && Category = "Products")),
false, // Record with specific Category value not exist
true // Record with specific Category vlaue exists
)
Please consider take a try with above solution, then check if the issue is solved.
Best regards,