Hello, I'm rebuilding my PowerApp in a new tenant and I have copied all of my SP lists and formulas over as well. For some reason the formula that I have isn't working now. It works fine in the old one, but it doesn't work in the new one. I have provided my error and the code below. This function works fine in my other powerapps. I set it up under a different microsoft account in a different browser as well:

Patch('Employee Activity List',
{
Employee:{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims:Concatenate("i:0#.f|membership|",User().Email),
DisplayName:User().FullName,
Email:User().Email,
Department:"",
JobTitle:"",
Picture:""
},
'Manager SharePoint Group': varManagerSpGroup,
'Employee Note': 'Employee Note Input'.Text,
Category:{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id:'Category Input'.Selected.ID,
Value:'Category Input'.Selected.Title},
Activity:{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id:'Activity Input'.Selected.ID,
Value:'Activity Input'.Selected.'Activity Name'},
Status:{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id:LookUp('Status Source List',Title = "Needs Approval", ID),
Value:LookUp('Status Source List',Title = "Needs Approval", Title)},
'Difficulty (Time)': LookUp('Activity Source List', 'Activity Name' = 'Activity Input'.Selected.'Activity Name').'Difficulty (Time)',
'Value to Company': LookUp('Activity Source List', 'Activity Name' = 'Activity Input'.Selected.'Activity Name').'Value to Company',
Points:LookUp('Difficulty Source List', Title = LookUp('Activity Source List', 'Activity Name' = 'Activity Input'.Selected.'Activity Name').'Difficulty (Time)'.Value).'Default Values' * LookUp('Value to Company Source List', Title = LookUp('Activity Source List', 'Activity Name' = 'Activity Input'.Selected.'Activity Name').'Value to Company'.Value).'Default Values',
'Submission Date':Now()
});
Reset('Category Input');
Reset('Activity Input');
Reset('Employee Note Input');
Navigate(Screen2, ScreenTransition.Fade);