Hi,
I'm using a PowerApps EditForm and added a custom card.
In here i put a ListBox that checks a different list for ID-Numbers and retrieves values of a different column.
I have 3 columns in here; ProjectLeader, Employee, and HoursInProject.
code:
Filter(
'Medewerkers Verbeterprojecten Operations',
LookUp(
'Medewerkers Verbeterprojecten Operations',
ProjectID = Gallery1.Selected.ID,
Projectleider
)
)
The formula is going to check which SharePoint ListItems match the Gallery1.Selected.ID and return that ProjectLeader.
The strange thing is, is that i'm getting the employees back (different column) that match the Gallery1.Selected.ID.
No matter what i want the result of the LookUp to be, it still give me the matching employees instead of the projectleader.
Same happens when i want the 'HoursInPRoject' as a result of the LookUp.
Any idea how to tackle this?