I have a problem and asking for help so any comments will be very valuable to me.
Structure
I have a List MAIN LIST:
WorkshopResults
| Title | Participant (Lookup) | Workshop (Lookup) |
|---|---|---|
| First | 1234 | 1234 |
| Second | 123 | 1235 |
Participant > List name for Lookup
| Title | FirstName |
|---|---|
| First | 1234 |
| Second | 1235 |
Worshop > List name for Lookup
| Title | TestUniqueNumber |
|---|---|
| First | ABCD1 |
| Second | ABCD2 |
The problem is that I am lost on building the Caml Query to get:
From Participant (Title, FisrtName) From Workshop (Title, TestUniqueNumber)
I do not know if there is a problem the list name is equal to lookup field name
I think I will need to project the fields in order to LEFT JOIN