Hi, I've built a few sharepoint lists and am using them as tables in a make shift database, thanks to the killing off of access web apps. I'm having a problem, in a gallery I need to display data from two different sharepoint lists, the two lists are
Crewmembers
- ID
- CrewDate
- CrewMemberName
- CrewMemberActivityID
Activities
- ID
- Activity
- StartDate
- EndDate
The gallery is using the crewmembers sharepoint list, within the gallery for each record shown I need to display the Activities.Activity where CrewMembers.CrewMemberActivityID = Activities.ID
I have tried a few different ways, I'm currently getting a invalid argument type when using the below for the Text value of the label in the gallery I'm using
LookUp(ThisItem.CrewMemberActivityID = Activities.ID, Activities.Activity)
Any help would be greatly appreciated