Hi potential question answerer,
I'm building a Power App that has a gallery of "Issues". When you select an item my "frmIssues" goes into update mode via "varCurrentIssue" variable. I want to attach some referential data to this Issue item but I'm getting some strange behaviour..
I have a "BugCreator" SharePoint list I want to link to the "Issues" SharePoint list:

I have a button that that creates some data in the BugCreator list that should tie back to the Issue:
Collect(BugCreator, {Title:"Bug: " & varCurrentIssue.Title, StoryPoints:5, IssueTrackerItem:varCurrentIssue});
Set(varStatus, "Bug Created");
SubmitForm(frmIssue);
ResetForm(frmIssue);
The problem is the Title is there and looks good:
Title: "Bug: A New problem",
StoryPoints: 5,
IssueTrackerItem: !Required Info
Why is there no data in only the lookup column?